You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- server {
- listen 80;
- listen [::]:80;
-
- server_name $GITEA_DOMAIN;
- client_max_body_size 200M;
-
- location / {
- proxy_pass http://localhost:3000;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- }
- }
|