mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-03 20:17:29 -05:00
13 lines
324 B
Plaintext
13 lines
324 B
Plaintext
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name npdi.cdn.pretendo.cc npdl.cdn.pretendo.cc npfl.c.app.pretendo.cc
|
|
nppl.c.app.pretendo.cc nppl.app.pretendo.cc npts.app.pretendo.cc;
|
|
|
|
set $upstream http://boss:8080;
|
|
location / {
|
|
proxy_pass $upstream;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|