Files
qwerty-learner/public/default.conf

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;
}
}