convert to tabs

This commit is contained in:
creme 2023-12-29 22:37:11 +01:00
parent 968d51e4e9
commit 968a4e0d2c
Signed by: creme
GPG Key ID: C147C3B7FBDF08D0
1 changed files with 15 additions and 15 deletions

View File

@ -8,31 +8,31 @@ server {
include ssl/envs_sh_wild.conf;
include snippets/local_ssl_header.conf;
root /home/piuvas/public_html/;
index index.html index.php index.cgi index.py index.sh index.pl index.lua;
root /home/piuvas/public_html/;
index index.html index.php index.cgi index.py index.sh index.pl index.lua;
location / {
add_header Access-Control-Allow-Origin *;
try_files $uri.html $uri $uri/ /index.php?$args ;
}
location / {
add_header Access-Control-Allow-Origin *;
try_files $uri.html $uri $uri/ /index.php?$args ;
}
location /semaninha {
include proxy_params;
include proxy_params;
proxy_pass http://127.0.0.1:1337/;
}
location /cgi-bin {
gzip off;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}
location /cgi-bin {
gzip off;
include fastcgi_params;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}
location ~ /restricted/ {
auth_basic "Restricted Area";
auth_basic_user_file /home/$user/.htpasswd;
}
# include php and ssi
include snippets/users/php_piuvas.conf;
ssi on;
# include php and ssi
include snippets/users/php_piuvas.conf;
ssi on;
}