monkeytype/docker/frontend/nginx.conf
Christian Fehmer 85543ffa19
fix(docker): fix deeplinks and update documentation (@fehmer) (#6640)
- support deep links like `/login`
- fix some typos

closes #6628

---------

Co-authored-by: Jack <jack@monkeytype.com>
2025-06-17 12:52:52 +02:00

11 lines
No EOL
175 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
server_name frontend;
location / {
root /usr/share/nginx/html;
try_files $uri $uri/ /index.html;
}
}