mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-14 02:27:16 +08:00
- support deep links like `/login` - fix some typos closes #6628 --------- Co-authored-by: Jack <jack@monkeytype.com>
11 lines
No EOL
175 B
Nginx Configuration File
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;
|
|
}
|
|
|
|
} |