pelican_ynh/conf/nginx.conf

24 lines
642 B
Nginx Configuration File
Raw Normal View History

2019-01-02 11:23:20 -05:00
location ^~ __PATH__ {
alias __FINALPATH__/public/;
2019-01-02 17:02:09 -05:00
try_files $uri $uri/ @pterodactyl;
index index.php index.htm index.html;
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
}
location ~ \.php {
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
2019-01-02 18:01:32 -05:00
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
2019-01-02 11:19:31 -05:00
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;
}
2019-01-02 11:23:20 -05:00
}
location @pterodactyl {
rewrite /(.*)$ /index.php?/$1 last;
}