memberflow-docker/docker/nginx.conf

11 lines
155 B
Nginx Configuration File
Raw Normal View History

2025-05-12 21:16:40 +00:00
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri /index.html;
}
}