mirror of
https://github.com/mermaid-js/mermaid-live-editor.git
synced 2025-03-18 17:16:21 +03:00
9 lines
169 B
Nginx Configuration File
9 lines
169 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
server_name mermaid;
|
|
location / {
|
|
root /usr/share/nginx/html;
|
|
# Fallback to index.html for other paths
|
|
try_files $uri /index.html;
|
|
}
|
|
} |