reddit-slideshow/nginx.conf
2023-06-02 13:58:56 -05:00

11 lines
215 B
Nginx Configuration File

server_tokens off;
server {
listen 8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri /index.html;
}
}