mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-28 13:24:16 +00:00
15 lines
343 B
Nginx Configuration File
15 lines
343 B
Nginx Configuration File
http {
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
server {
|
|
listen 80;
|
|
server_name localhost openfront.io openfront.dev;
|
|
|
|
location / {
|
|
root /usr/src/app/;
|
|
include /etc/nginx/mime.types;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
}
|
|
} |