git-subtree-dir: frontend git-subtree-mainline:bfc1a360b6git-subtree-split:babef04f9a
16 lines
229 B
Nginx Configuration File
16 lines
229 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
include /etc/nginx/mime.types;
|
|
types {
|
|
application/javascript mjs;
|
|
}
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|