nginx-ultimate-bad-bot-blocker/dev-tools/default.vhost
2021-07-04 15:57:46 +02:00

15 lines
309 B
Nginx Configuration File

server {
listen 80 default_server;
listen [::]:80 default_server;
server_name localhost;
charset UTF-8;
index index.html;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
location / {
root /var/www/html/;
}
}