reddit-slideshow/nginx.conf

11 lines
215 B
Nginx Configuration File
Raw Permalink Normal View History

2023-06-02 13:58:56 -05:00
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;
}
}