mirror of
https://github.com/codex-storage/codex-marketplace-ui.git
synced 2025-02-23 13:18:37 +00:00
16 lines
279 B
Plaintext
16 lines
279 B
Plaintext
server {
|
|
listen ${APP_PORT};
|
|
server_name localhost;
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
error_page 500 502 503 504 /50x.html;
|
|
|
|
location / {
|
|
root ${APP_HOME};
|
|
index index.html;
|
|
|
|
try_files $uri $uri/ /index.html =404;
|
|
}
|
|
}
|