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.

nginx_site_nossl.conf 222B

12345678910111213
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. server_name $GITEA_DOMAIN;
  5. client_max_body_size 0;
  6. location / {
  7. proxy_pass http://localhost:3000;
  8. proxy_set_header Host $host;
  9. proxy_set_header X-Real-IP $remote_addr;
  10. }
  11. }