I just installed Jenkins 1.575 on Ubuntu 12.04LTS. When I go to the plugins
section to add plugins, nothing shows up. If I go to Advanced and click
check now, it just hangs at Updating....
- I am running nginx to do a proxy pass for port 80 to port 8080 where
jenkins is running. I don't know much on configuring nginx. When I first
started Jenkins, I had the reverse proxy error but dismissed it. Not sure
if that is related.
- I also had ufw running but disabling that did not help
- I also don't see any errors in the Jenkins log
My nginx.conf related to Jenkins:
http { server { listen 80 default; server_name _; location /{ proxy_set_header
X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:8080/; proxy_set_header X-Real-IP $remote_addr;
proxy_redirect http://localhost:8080 $scheme://localhost; } } .....
Any help would be much appreciated.
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.