host and port

This commit is contained in:
Administrator 2022-10-03 16:54:58 +03:00
parent 418eee1f43
commit 96bb2c8701
2 changed files with 2 additions and 2 deletions

View File

@ -22,4 +22,4 @@ def run():
response['response'].update(processor.process()) response['response'].update(processor.process())
return response return response
app.run() app.run(host="0.0.0.0", port=8000)

View File

@ -5,7 +5,7 @@ http {
listen 1238; listen 1238;
location / { location / {
proxy_pass http://api:5000/; proxy_pass http://api:8000/;
} }
} }