1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/streams_ynh.git synced 2024-09-03 20:26:20 +02:00

Let's try the old nginx conf file

This commit is contained in:
dragondaddy 2023-07-30 00:03:34 +02:00
parent 32a81e0287
commit 1226f056d0

View file

@ -1,25 +1,22 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ { location __PATH__/ {
# Path to source
alias __INSTALL_DIR__/; alias __INSTALL_DIR__/;
if (!-e $request_filename) { if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1; rewrite ^(.*)$ /index.php?req=$1;
} }
client_max_body_size 50m;
client_body_buffer_size 128k;
# Default indexes and catch-all # Default indexes and catch-all
index index.php; index index.php;
charset utf-8; charset utf-8;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file
client_max_body_size 50M;
client_body_buffer_size 128k;
location ~* \.php$ { location ~* \.php$ {
try_files $uri =404; try_files $uri =404;
fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock; fastcgi_pass unix:/var/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php; fastcgi_index index.php;
include fastcgi_params; include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
@ -31,7 +28,7 @@ location __PATH__/ {
location ^~ /.well-known/ { location ^~ /.well-known/ {
allow all; allow all;
if (!-e $request_filename) { if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?q=$1; rewrite ^(.*)$ /index.php?req=$1;
} }
} }
@ -63,7 +60,4 @@ location __PATH__/ {
location ~ /util { location ~ /util {
deny all; deny all;
} }
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}