18 lines
182 B
Plaintext
18 lines
182 B
Plaintext
|
server {
|
||
|
|
||
|
listen 80;
|
||
|
server_name {{ http_host }};
|
||
|
|
||
|
# location /_/static {
|
||
|
|
||
|
# alias /path/to/gitea/public;
|
||
|
# }
|
||
|
|
||
|
location / {
|
||
|
|
||
|
proxy_pass http://localhost:3000;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|