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

Adjust NGINX conf to not use PHP

This commit is contained in:
orhtej2 2023-09-28 16:12:51 +02:00
parent 83d6ac58e7
commit a7a27bb21b

View file

@ -1,28 +1,15 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ { location __PATH__/ {
# Path to source # Path to source
alias __INSTALL_DIR__/; alias __INSTALL_DIR__/ ;
### Example PHP configuration (remove it if not used) include uwsgi_params;
index index.php; # Needed for long running operations in admin interface
proxy_pass http://127.0.0.1:__PORT__/;
# Common parameter to increase upload size limit in conjunction with dedicated php-fpm file proxy_set_header Host $host;
#client_max_body_size 50M; proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
try_files $uri $uri/ index.php; client_max_body_size 200M;
location ~ [^/]\.php(/|$) { proxy_set_header X-Real-IP $remote_addr;
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
# Include SSOWAT user panel.
include conf.d/yunohost_panel.conf.inc;
}