add missing internal nginx server

This commit is contained in:
KF7EEL 2022-09-25 12:30:44 -07:00
parent cf1b175dde
commit b3717a280a
2 changed files with 20 additions and 0 deletions

View File

@ -7,3 +7,13 @@ server {
uwsgi_pass unix:/tmp/hbnet_web_service.sock;
}
}
# Used for internal connections
server{
listen 8080;
server_name _;
location / {
include uwsgi_params;
uwsgi_pass unix:/tmp/hbnet_web_service.sock;
}
}

View File

@ -7,3 +7,13 @@ server {
uwsgi_pass unix:/tmp/hbnet_web_service.sock;
}
}
# Used for internal connections
server{
listen 8080;
server_name _;
location / {
include uwsgi_params;
uwsgi_pass unix:/tmp/hbnet_web_service.sock;
}
}