This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/docker/nginx/conf.d/server.local.conf

11 lines
273 B
Plaintext
Raw Normal View History

2021-12-20 10:27:29 +00:00
server {
# local server - do not expose this port externally
2021-12-20 10:27:29 +00:00
listen 8000;
listen [::]:8000;
# secure traffic by limiting to only local networks
2021-12-20 13:54:42 +00:00
include /etc/nginx/conf.d/include/local-network-only;
2021-12-20 10:27:29 +00:00
include /etc/nginx/conf.d/server/server.local;
}