我在nginx服务器上设置了gog。我也在同一台服务器上托管了cpanel / apache。我正在使用cpanel的.htaccess重定向我的gogs调用。我的nginx配置是
server {
listen 9800;
server_name <my_domain>;
proxy_set_header X-Real-IP $remote_addr; # pass on real client IP
location / {
proxy_pass http://localhost:8000;
}
}
如果我从浏览器使用直接IP,但是当我使用域时,它会在浏览器上抛出ERR_TOO_MANY_REDIRECTS错误。