error-pages/docker/nginx-server.conf

10 lines
121 B
Plaintext
Raw Normal View History

2020-07-08 11:12:21 +00:00
server {
listen 8080;
server_name _;
location / {
root /opt/html;
index index.html index.htm;
}
}