mirror of
https://github.com/cupcakearmy/docker-nginx-static-server.git
synced 2024-12-21 15:56:29 +00:00
10 lines
140 B
Nginx Configuration File
10 lines
140 B
Nginx Configuration File
server{
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location / {
|
|
root /srv;
|
|
# Activate the next line if you want to list files
|
|
# autoindex on;
|
|
}
|
|
} |