mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2026-04-05 14:29:04 +08:00
14 lines
265 B
Plaintext
14 lines
265 B
Plaintext
server {
|
|
listen 5173;
|
|
listen [::]:5173;
|
|
server_name localhost;
|
|
location / {
|
|
root /app;
|
|
index index.html index.htm;
|
|
}
|
|
error_page 500 502 503 504 /50x.html;
|
|
location = /50x.html {
|
|
root /app;
|
|
}
|
|
}
|