diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 527e9ab9..5bb273d3 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -1,11 +1,12 @@ server { listen 80; + server_name waggle-pet.com; location / { root /usr/share/nginx/html; index index.html index.html; try_files $uri $uri/ /index.html; - + proxy_pass http://localhost:3001; } }