1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/linkstack_ynh.git synced 2024-09-03 19:36:14 +02:00
linkstack_ynh/conf/nginx.conf

46 lines
1,008 B
Nginx Configuration File
Raw Normal View History

2023-05-06 14:23:47 +02:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
# Path to source
2023-05-06 17:34:55 +02:00
root __INSTALL_DIR__/;
2023-05-06 14:23:47 +02:00
### Example PHP configuration (remove it if not used)
index index.php;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
2023-06-11 14:17:22 +02:00
client_max_body_size 10M;
2023-05-06 14:23:47 +02:00
try_files $uri $uri/ /index.php?$query_string;
2023-05-06 14:23:47 +02:00
location ~ [^/]\.php(/|$) {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
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
2023-05-06 17:34:55 +02:00
error_page 404 /index.php;
2023-05-06 14:23:47 +02:00
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}
location ~ ^\. {
deny all;
}
location ~ \.sqlite$ {
deny all;
}
location ~ \.env$ {
deny all;
}
location ~ /\.htaccess {
deny all;
}