mirror of
https://github.com/mitchellkrogza/nginx-ultimate-bad-bot-blocker.git
synced 2025-09-01 18:19:55 +00:00
12 lines
161 B
Nginx Configuration File
12 lines
161 B
Nginx Configuration File
server {
|
|
listen 5000;
|
|
|
|
root /var/www/html;
|
|
server_name localhost;
|
|
charset UTF-8;
|
|
index index.html;
|
|
|
|
location / {
|
|
root /var/www/html/;
|
|
}
|
|
}
|