This content has been marked as final.
Show 1 reply
-
1. Re: Why does this openshift route succeed in CDK but fail in RHEL7 Atomic?
fsimorbrian Aug 8, 2016 12:34 PM (in response to fsimorbrian)It turns out we had a file permissions issue due to the random users on OpenShift.
We corrected the following line to allow NGINX to read the configuration file and the problem was resolved:
# this chmod line is required on atomic but not on CDK - researching why (moriarty)
RUN chmod -R 777 /var/log/nginx /var/cache/nginx/ \&& chmod -R 777 /var/run \
&& chmod -R 777 /etc/nginx/*