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,69 +1,63 @@
#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;
} }
# Default indexes and catch-all client_max_body_size 50m;
index index.php; client_body_buffer_size 128k;
charset utf-8;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file # Default indexes and catch-all
client_max_body_size 50M; index index.php;
client_body_buffer_size 128k; charset utf-8;
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;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_read_timeout 300;
}
fastcgi_index index.php; # make sure webfinger and other well known services aren't blocked
include fastcgi_params; # by denying dot files and rewrite request to the front controller
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; location ^~ /.well-known/ {
fastcgi_read_timeout 300; allow all;
} if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?req=$1;
}
}
# make sure webfinger and other well known services aren't blocked # statically serve these file types when possible
# by denying dot files and rewrite request to the front controller # otherwise fall back to front controller
location ^~ /.well-known/ { # allow browser to cache them
allow all; # added .htm for advanced source code editor library
if (!-e $request_filename) { # location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|map|ttf|woff|woff2|svg)$ {
rewrite ^(.*)$ /index.php?q=$1; # expires 30d;
} # try_files $uri /index.php?q=$uri&$args;
} # }
# statically serve these file types when possible # block these file types
# otherwise fall back to front controller location ~* \.(tpl|md|tgz|log|out)$ {
# allow browser to cache them deny all;
# added .htm for advanced source code editor library }
# location ~* \.(jpg|jpeg|gif|png|ico|css|js|htm|html|map|ttf|woff|woff2|svg)$ {
# expires 30d;
# try_files $uri /index.php?q=$uri&$args;
# }
# block these file types # deny access to all dot files
location ~* \.(tpl|md|tgz|log|out)$ { location ~ /\. {
deny all; deny all;
} }
# deny access to all dot files #deny access to store
location ~ /\. { location ~ /store {
deny all; deny all;
} }
#deny access to store #deny access to util
location ~ /store { location ~ /util {
deny all; deny all;
} }
}
#deny access to util
location ~ /util {
deny all;
}
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}