Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
change host to 0.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
quillcraftsman committed Sep 17, 2023
1 parent faf5790 commit c78048b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ server {
server_name api.findsimilar.org;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8000;
proxy_pass http://0.0.0.0:8000;
proxy_redirect off;
}
}
Expand All @@ -12,7 +12,7 @@ server {
server_name demo.findsimilar.org;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3000;
proxy_pass http://0.0.0.0:3000;
proxy_redirect off;
}
}

0 comments on commit c78048b

Please sign in to comment.