pterodactyl_ynh/conf/nginx.conf

28 lines
863 B
Nginx Configuration File
Raw Normal View History

2022-03-27 05:52:18 -04:00
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ {
2019-02-21 10:56:13 -05:00
2022-03-27 05:52:18 -04:00
# Path to source
2022-03-27 08:16:16 -04:00
alias __FINALPATH__/public/;
2019-02-21 10:56:13 -05:00
2022-03-27 05:52:18 -04:00
index index.php;
2022-03-27 08:16:16 -04:00
2022-03-27 05:52:18 -04:00
try_files $uri $uri/ index.php;
2019-02-21 10:56:13 -05:00
2022-03-27 05:52:18 -04:00
location ~ [^/]\.php(/|$) {
2022-03-27 06:02:40 -04:00
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php__PHPVERSION__-fpm-__NAME__.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param PHP_VALUE "upload_max_filesize = 100M \n post_max_size=100M";
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param HTTP_PROXY "";
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
include /etc/nginx/fastcgi_params;
}
2019-01-02 11:23:20 -05:00
}