docker-nginx-static-server/nginx.conf

10 lines
140 B
Nginx Configuration File
Raw Normal View History

server{
listen 80;
server_name _;
location / {
root /srv;
# Activate the next line if you want to list files
# autoindex on;
2018-07-01 10:35:40 +02:00
}
}