mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-03 20:17:29 -05:00
This change is necessary because some games need to connect to a S3 server directly, and MinIO is limited to listening on one domain for virtual hosts.
11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name cdn.pretendo.cc mii.olv.pretendo.cc pretendo-cdn.b-cdn.net;
|
|
|
|
set $upstream http://pn-cdn.minio.pretendo.cc;
|
|
location / {
|
|
proxy_pass $upstream;
|
|
}
|
|
}
|