indentation

This commit is contained in:
frju365 2019-01-02 23:02:09 +01:00
parent 4769983c97
commit fca1e46374
No known key found for this signature in database
GPG key ID: 59BFB76C5925FC73

View file

@ -1,7 +1,7 @@
location ^~ __PATH__ {
alias __FINALPATH__/public/;
try_files $uri $uri/ @pterodactyl;
index index.php index.htm index.html;
try_files $uri $uri/ @pterodactyl;
index index.php index.htm index.html;
# Force https
if ($scheme = http) {
rewrite ^ https://$server_name$request_uri? permanent;
@ -21,4 +21,3 @@ index index.php index.htm index.html;
location @pterodactyl {
rewrite /(.*)$ /index.php?/$1 last;
}