pelican_ynh/conf/nginx.conf

52 lines
1.7 KiB
Nginx Configuration File
Raw Normal View History

root /var/www/pterodactyl/public/;
2019-02-21 10:56:13 -05:00
index index.php;
2019-02-21 10:56:13 -05:00
access_log /var/log/nginx/pterodactyl.app-access.log;
error_log /var/log/nginx/pterodactyl.app-error.log error;
# allow larger file uploads and longer script runtimes
client_max_body_size 100m;
client_body_timeout 120s;
sendfile off;
# See https://hstspreload.org/ before uncommenting the line below.
# add_header Strict-Transport-Security "max-age=15768000; preload;";
add_header X-Content-Type-Options nosniff;
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag none;
add_header Content-Security-Policy "frame-ancestors 'self'";
add_header X-Frame-Options DENY;
add_header Referrer-Policy same-origin;
2019-02-21 18:18:21 -05:00
#add_header X-Frame-Options "ALLOW-FROM __DOMAIN__:8080";
#add_header Access-Control-Allow-Origin "__DOMAIN__:8080";
2019-02-21 10:56:13 -05:00
location __PATH__ {
2019-01-02 18:30:06 -05:00
try_files $uri $uri/ /index.php?$query_string;
2019-01-02 11:23:20 -05:00
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
2019-01-02 11:19:31 -05:00
}
2019-02-21 10:56:13 -05:00
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
2019-02-22 20:12:41 -05:00
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
2019-02-21 10:56:13 -05:00
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;
}
2019-01-02 11:23:20 -05:00
}