shockrah
f4b24be904
This is to make browser behave better as they would always try to avoid the domain lookup
11 lines
257 B
Plaintext
11 lines
257 B
Plaintext
# This file pertains to the Gitea service which is served under the FQDN:
|
|
# git.lablad
|
|
# The default port is listed under /vars/main.yml as 3000 as GITEA_PUB_PORT
|
|
|
|
server {
|
|
server_name git.lablad.net;
|
|
location / {
|
|
proxy_pass http://127.0.0.1:3000;
|
|
}
|
|
}
|