mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-05-09 04:23:15 -05:00
This is about the minimum required to make the account server start. It doesn't fully work yet.
10 lines
164 B
Plaintext
10 lines
164 B
Plaintext
server {
|
|
listen 80;
|
|
server_name account.pretendo.cc;
|
|
|
|
location / {
|
|
proxy_pass http://account:8080;
|
|
proxy_set_header Host $host;
|
|
}
|
|
}
|