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:
parent
21b15fe1bd
commit
a32a80d63f
1 changed files with 15 additions and 17 deletions
|
@ -1,20 +1,18 @@
|
||||||
location YNH_EXAMPLE_PATH {
|
location ^~ YNH_EXAMPLE_PATH {
|
||||||
alias YNH_WWW_PATH ;
|
alias YNH_WWW_PATH;
|
||||||
if ($scheme = http) {
|
try_files $uri $uri/ @monica;
|
||||||
rewrite ^ https://$server_name$request_uri? permanent;
|
|
||||||
}
|
location ~ \.php {
|
||||||
index index.php;
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||||
try_files $uri $uri/ index.php;
|
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||||
location ~ [^/]\.php(/|$) {
|
fastcgi_index index.php;
|
||||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
include fastcgi_params;
|
||||||
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
fastcgi_param REMOTE_USER $remote_user;
|
||||||
fastcgi_index index.php;
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
||||||
include fastcgi_params;
|
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||||
fastcgi_param REMOTE_USER $remote_user;
|
}
|
||||||
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
||||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Include SSOWAT user panel.
|
location @monica {
|
||||||
include conf.d/yunohost_panel.conf.inc;
|
rewrite /(.*)$ /index.php?/$1 last;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue