2023-04-08 16:17:22 -04:00
|
|
|
server {
|
|
|
|
listen 443 ssl http2;
|
2023-04-08 16:37:05 -04:00
|
|
|
server_name panel.mracs.dev;
|
2023-04-08 16:17:22 -04:00
|
|
|
|
|
|
|
root /var/www/pterodactyl/public;
|
|
|
|
index index.php;
|
|
|
|
|
|
|
|
access_log /var/log/nginx/pterodactyl.app-access.log;
|
|
|
|
error_log /var/log/nginx/pterodactyl.app-error.log error;
|
|
|
|
|
|
|
|
client_max_body_size 100m;
|
|
|
|
client_body_timeout 120s;
|
|
|
|
|
|
|
|
sendfile off;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
try_files $uri $uri/ /index.php?$query_string;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ \.php$ {
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
|
|
fastcgi_pass unix:/run/php/php8.1-fpm.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;
|
|
|
|
}
|
|
|
|
|
|
|
|
location ~ /\.ht {
|
|
|
|
deny all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|