rework the composer and php images

This commit is contained in:
2018-04-19 21:43:57 -04:00
parent cfa19949b6
commit 0b2af71162
10 changed files with 79 additions and 6 deletions

View File

@@ -1,3 +1,12 @@
proxy_cache_path /data/nginx/cache/abcapi levels=1:2 keys_zone=abcapi:10m max_size=10g
inactive=60m use_temp_path=off;
upstream abcapi_upstream {
server tasks.abc-api_nginx:8084;
server dkhost.xai-corp.net:8084 backup;
}
server {
listen 443 ssl ipv6only=off;
server_name abcapi.xai-corp.net;
@@ -8,7 +17,7 @@ server {
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains" always;
location / {
proxy_pass http://dkhost.xai-corp.net:8084;
proxy_pass http://abcapi_upstream;
proxy_set_header Host $host; # required for docker client's sake
proxy_set_header X-Real-IP $remote_addr; # pass on real client's IP
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

View File

@@ -1,3 +1,6 @@
proxy_cache_path /data/nginx/cache/jenkins levels=1:2 keys_zone=jenkins:10m max_size=10g
inactive=60m use_temp_path=off;
# jenkins.xai-corp.net
server {
listen 443 ssl;