jilo-web/config.nginx

16 lines
218 B
Plaintext
Raw Normal View History

2024-07-10 10:58:44 +00:00
server {
listen 80;
server_name $DOMAIN;
root $INSTALL_DIR;
index index.php;
location / {
try_files \$uri \$uri/ /index.php?\$args;
}
location ~ /\.ht {
deny all;
}
}