mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-07 09:41:08 +07:00
20 lines
297 B
Plaintext
20 lines
297 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name khuedoan.com;
|
|
|
|
location / {
|
|
proxy_pass http://index:8000;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name git.khuedoan.com;
|
|
|
|
location / {
|
|
proxy_pass http://gitea:3000;
|
|
}
|
|
}
|