我一直试图在我的VPS上设置Jenkins。 我做了所有事情并让它在ip:8080上工作。 我真正想做的是让它在ci.domain.com上工作,但我遇到了麻烦。
我在同一台机器上使用Pterodactyl,它在Nginx上运行。
当我将域指向ip时,我被重定向到hub.domain.com上的Pterodactyl。
我尝试用apache设置Jenkins并将Pterodactyl留在Nginx上但是没有用。
有没有办法让它起作用?
干杯。
答案 0 :(得分:1)
我遇到了同样的问题,看起来网站上的nginx congif效果不佳。
试试这个:
upstream jenkins {
server 127.0.0.1:8080 fail_timeout=0;
}
server {
listen 80;
server_name ci.domain.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name ci.domain.com;
#if you want sll
#ssl_certificate put_path_here;
#ssl_certificate_key put_path_here;
location / {
proxy_set_header Host $host:$server_port;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect http:// https://;
proxy_pass http://jenkins;
# Required for new HTTP-based CLI
proxy_http_version 1.1;
proxy_request_buffering off;
proxy_buffering off; # Required for HTTP-based CLI to work over SSL
# workaround for https://issues.jenkins-ci.org/browse/JENKINS-45651
add_header 'X-SSH-Endpoint' 'jenkins.domain.tld:50022' always;
}
}