12 lines
258 B
Plaintext
12 lines
258 B
Plaintext
# This file pertains to the Gitea service which is served under the FQDN:
|
|
# vault.lablad
|
|
# The default port is listed under /vars/main.yml as 8200 as VAULT_PORT
|
|
|
|
server {
|
|
server_name vault.lablad.net;
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8200;
|
|
}
|
|
}
|
|
|