Files
dockerfiles/nginx/default.conf
T
2025-04-15 17:05:20 -07:00

9 lines
148 B
Plaintext

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