chore: added ngnix config for space project running :4000

This commit is contained in:
Henit Chobisa 2023-08-18 13:49:14 +00:00
parent 2ee451016e
commit 40df18e802

View File

@ -18,6 +18,11 @@ server {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /space/ {
proxy_pass http://localhost:4000/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;