chown root:root /etc/systemd/system/nginx.service 2 创建nginx代理gitea和grafana的配置文件:不需要改nginx主配置文件,nginx会读取这个: vi /etc/nginx/sites-available/gitea.conf=== 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 server { liste...
1 第一步,打开nginx.conf配置文件,将ginx.conf 配置中 server 的 http 部分改成如图所示内容:2 第二步,如果我们已经有一个域名并且想与 Gitea 共享该域名,可以增加以下 nginx.conf 配置中 server 的 http 部分,为 Gitea 添加路由规则,然后在Gitea 配置文件中添加 [server] R...
作为giteaForBT开发者,最近有用户遇到了一个反向代理的坑,那就是代理后能访问也能克隆,但是push数据量一大就会出现Request Entity Too Large报错,最后查了好多资料找到解决方案,特此做个记录。 默认反向代理 location ~* { proxy_pass http://localhost:3000; proxy_set_header Host $host; proxy_set_header X-R...
原因是Nginx限制了上传文件的大小,按下面的方式修改配置 server{listen80;server localhost;client_max_body_size100m;location/gitea/{proxy_pass http://192.168.31.34:3000/;# 转发规则proxy_set_headerHost$http_host;proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;proxy_send_timeout1h;proxy_re...
我们可以建立多个服务器,组成一个服务器集群,当用户访问网站时,先访问中间服务器,再让这个中间服务器...