1
0
Fork 0
PiSwitch_frontend/site.conf

11 lines
252 B
Plaintext
Raw Permalink Normal View History

2021-03-23 10:41:41 +01:00
server {
listen 80;
index index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/;
location / {
try_files $uri $uri/ /index.php?$query_string;
gzip_static on;
}
}