1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

Fix nginx proxy for public files

This commit is contained in:
Markus Grigull 2017-08-03 10:24:51 +02:00
parent 5cb615ef2b
commit 637f1fd2a8

View file

@ -14,6 +14,10 @@ server {
proxy_pass http://backend:4000/;
}
location /public {
proxy_pass http://backend:4000/public;
}
location /ws/api/ {
proxy_pass http://node/api/;
}