mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-03 20:17:29 -05:00
* Bump repos/account from `6db6769` to `27ddfc3`
Bumps [repos/account](https://github.com/PretendoNetwork/account) from `6db6769` to `27ddfc3`.
- [Commits](6db67698e2...27ddfc3c67)
---
updated-dependencies:
- dependency-name: repos/account
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
* Add cbvc nginx config
---------
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Lopez <73856503+MatthewL246@users.noreply.github.com>
15 lines
442 B
Plaintext
15 lines
442 B
Plaintext
server {
|
|
listen 80;
|
|
listen 443 ssl;
|
|
server_name account.pretendo.cc c.account.pretendo.cc conntest.pretendo.cc
|
|
cbvc.cdn.pretendo.cc nasc.pretendo.cc datastore.pretendo.cc api.pretendo.cc
|
|
assets.pretendo.cc;
|
|
|
|
# This prevents nginx from exiting on startup if it can't resolve the upstream
|
|
set $upstream http://account:8080;
|
|
location / {
|
|
proxy_pass $upstream;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|