pretendo-docker/nginx/account.conf
Matthew Lopez 79a8b81bab
Start setting up the account server
This is about the minimum required to make the account server start. It doesn't fully work yet.
2023-12-17 14:39:20 -05:00

10 lines
164 B
Plaintext

server {
listen 80;
server_name account.pretendo.cc;
location / {
proxy_pass http://account:8080;
proxy_set_header Host $host;
}
}