1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00

update nginx config for laravel

This commit is contained in:
Sebastian Gumprich 2017-06-12 22:24:37 +02:00
parent 21b15fe1bd
commit a32a80d63f

View file

@ -1,11 +1,8 @@
location YNH_EXAMPLE_PATH {
location ^~ YNH_EXAMPLE_PATH {
alias YNH_WWW_PATH;
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
index index.php;
try_files $uri $uri/ index.php;
location ~ [^/]\.php(/|$) {
try_files $uri $uri/ @monica;
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
@ -14,7 +11,8 @@ location ~ [^/]\.php(/|$) {
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location @monica {
rewrite /(.*)$ /index.php?/$1 last;
}