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.
2021-12-20 10:27:29 +00:00
|
|
|
server {
|
2021-12-20 13:18:48 +00:00
|
|
|
# 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;
|
|
|
|
}
|