mirror of https://github.com/kf7eel/hbnet.git
add missing internal nginx server
This commit is contained in:
parent
cf1b175dde
commit
b3717a280a
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue