Files
mermaid-live-editor/nginx.conf
T

9 lines
167 B
Nginx Configuration File

server {
listen 80;
server_name mermaid;
location / {
root /usr/share/nginx/html;
# Fallback to index.html for other paths
try_files $uri /index.html;
}
}