pelican_ynh/conf/nginx.conf

25 lines
678 B
Nginx Configuration File

root /var/www/pterodactyl/public/;
location ^~ __PATH__ {
alias __FINALPATH__/public/;
try_files $uri $uri/ @pterodactyl;
index index.php index.htm index.html;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
}
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
fastcgi_pass unix:/var/run/php/php7.2-fpm.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;
}
}
location @pterodactyl {
rewrite /(.*)$ /index.php?/$1 last;
}