Files
dockerfiles/nginx/default.conf
T
2019-08-08 19:58:24 -07:00

9 lines
157 B
Plaintext

server {
server_name localhost;
location / {
root /var/www/html;
autoindex on;
access_log /var/log/nginx-mainline/access.log combined;
}
}