You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a functional nginx config (stored as /etc/nginx/sites-enabled/jenkins.inasafe.org.nginx.conf)
upstream inasafe-jenkins {
server 127.0.0.1:8080;
}
server {
# OTF gzip compression
gzip on;
gzip_min_length 860;
gzip_comp_level 5;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain application/xml application/x-javascript text/xml text/css application/json;
gzip_disable "MSIE [1-6].(?!.*SV1)";
# the port your site will be served on
listen 80;
# the domain name it will serve for
server_name jenkins.inasafe.org
charset utf-8;
# This gives equivalent of proxypreservehost in apache
proxy_set_header Host $host;
# max upload size, adjust to taste
client_max_body_size 15M;
location / {
proxy_pass http://inasafe-jenkins;
}
}
There are two issues to resolve:
How to get the container image onto the server (a private repo on hub would be good)
When I spin up the container, it all loads fine etc, but jobs do not actually run
The text was updated successfully, but these errors were encountered:
This is the log of what I did:
This is a functional nginx config (stored as
/etc/nginx/sites-enabled/jenkins.inasafe.org.nginx.conf
)There are two issues to resolve:
The text was updated successfully, but these errors were encountered: