111 lines
2.7 KiB
Plaintext
111 lines
2.7 KiB
Plaintext
# 2025-02-25
|
|
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
root /app/public;
|
|
index index.html index.htm index.php;
|
|
charset utf-8;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
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 128k;
|
|
fastcgi_buffers 256 16k;
|
|
fastcgi_busy_buffers_size 256k;
|
|
fastcgi_temp_file_write_size 256k;
|
|
fastcgi_connect_timeout 300;
|
|
fastcgi_send_timeout 300;
|
|
fastcgi_read_timeout 300;
|
|
}
|
|
|
|
access_log off;
|
|
error_log /var/log/nginx/pterodactyl.app-error.log error;
|
|
|
|
sendfile off;
|
|
tcp_nopush on;
|
|
tcp_nodelay on;
|
|
|
|
open_file_cache max=200000 inactive=20s;
|
|
open_file_cache_valid 30s;
|
|
open_file_cache_min_uses 2;
|
|
open_file_cache_errors on;
|
|
|
|
client_max_body_size 100m;
|
|
client_body_timeout 120s;
|
|
client_header_timeout 120s;
|
|
keepalive_timeout 120s;
|
|
send_timeout 120s;
|
|
reset_timedout_connection on;
|
|
keepalive_requests 100000;
|
|
|
|
client_body_buffer_size 128k;
|
|
client_header_buffer_size 1k;
|
|
|
|
gzip on;
|
|
gzip_min_length 10240;
|
|
gzip_comp_level 1;
|
|
gzip_vary on;
|
|
gzip_disable msie6;
|
|
gzip_proxied expired no-cache no-store private auth;
|
|
gzip_types
|
|
text/css
|
|
text/javascript
|
|
text/xml
|
|
text/plain
|
|
text/x-component
|
|
application/javascript
|
|
application/x-javascript
|
|
application/json
|
|
application/xml
|
|
application/rss+xml
|
|
application/atom+xml
|
|
font/truetype
|
|
font/opentype
|
|
application/vnd.ms-fontobject
|
|
image/svg+xml;
|
|
|
|
location = /favicon.ico {
|
|
access_log off;
|
|
log_not_found off;
|
|
}
|
|
|
|
location = /robots.txt {
|
|
access_log off;
|
|
log_not_found off;
|
|
}
|
|
|
|
location ~ /\.ht {
|
|
access_log off;
|
|
log_not_found off;
|
|
deny all;
|
|
}
|
|
|
|
location ~* /(\.git|cache|bin|logs|backup|tests)/.*$ {
|
|
return 403;
|
|
}
|
|
|
|
location ~* /(system|vendor)/.*\.(txt|xml|md|html|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ {
|
|
return 403;
|
|
}
|
|
|
|
location ~* /user/.*\.(txt|md|json|yaml|yml|php|pl|py|cgi|twig|sh|bat)$ {
|
|
return 403;
|
|
}
|
|
|
|
location ~ /(LICENSE\.txt|composer\.lock|composer\.json|nginx\.conf|web\.config|htaccess\.txt|\.htaccess) {
|
|
return 403;
|
|
}
|
|
}
|