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,11 +1,8 @@
|
|||
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(/|$) {
|
||||
location ^~ YNH_EXAMPLE_PATH {
|
||||
alias YNH_WWW_PATH;
|
||||
try_files $uri $uri/ @monica;
|
||||
|
||||
location ~ \.php {
|
||||
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||||
fastcgi_pass unix:/var/run/php5-fpm.sock;
|
||||
fastcgi_index index.php;
|
||||
|
@ -13,8 +10,9 @@ location ~ [^/]\.php(/|$) {
|
|||
fastcgi_param REMOTE_USER $remote_user;
|
||||
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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue