atlantide-haproxy/vhost-81.conf

12 lines
238 B
Plaintext
Raw Normal View History

2020-11-03 11:28:46 +01:00
server {
listen 81;
server_name _;
root /var/www/81;
index index.html;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
}