1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zwiicms_ynh.git synced 2024-09-03 18:06:04 +02:00
zwiicms_ynh/conf/nginx.conf

35 lines
974 B
Nginx Configuration File
Raw Normal View History

2020-05-04 19:14:19 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2020-05-05 14:39:17 +02:00
alias __FINALPATH__/ ;
2020-05-04 19:14:19 +02:00
# Force usage of https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
### Example PHP configuration (remove it if not used)
2020-05-07 12:20:35 +02:00
index index.php;
2020-05-07 12:06:51 +02:00
2020-05-04 19:14:19 +02:00
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2020-05-07 12:21:55 +02:00
#client_max_body_size 50M;
2020-05-04 19:14:19 +02:00
2020-05-07 12:06:51 +02:00
#try_files $uri $uri/ index.php;
2020-05-07 12:20:35 +02:00
try_files $uri $uri/ __PATH__/index.php?$args;
2020-05-04 19:14:19 +02:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2021-01-26 19:42:45 +01:00
fastcgi_pass unix:/var/run/php/php7.3-fpm-__NAME__.sock;
2020-05-04 19:14:19 +02:00
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
### End of PHP configuration part
# Include SSOWAT user panel.
2020-05-05 14:53:21 +02:00
include conf.d/yunohost_panel.conf.inc;
2020-05-04 19:14:19 +02:00
}