mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 23:10:22 +07:00
30 lines
456 B
Plaintext
30 lines
456 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;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name pastebin.khuedoan.com;
|
|
|
|
location / {
|
|
proxy_pass http://pastebin:8000;
|
|
}
|
|
}
|