Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 0ce1503

Browse files
committed
upgrade to using nginx yum repo and bump to 1.10.1 version (security reasons)
1 parent e0308fb commit 0ce1503

File tree

5 files changed

+17
-12
lines changed

5 files changed

+17
-12
lines changed

.s2i/bin/assemble

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ test_config() {
8888
envsubst_config
8989

9090
echo "---> testing config"
91-
if ! $NGINX_BASE_DIR/usr/sbin/nginx -c /opt/app-root/etc/nginx.conf -t ; then
91+
if ! $NGINX_BASE_DIR/nginx -c /opt/app-root/etc/nginx.conf -t ; then
9292
echo "nginx configuration not valid."
9393
echo
9494
for f in /opt/app-root/etc/nginx.conf.d/*; do

.s2i/bin/run

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ envsubst_config() {
2626

2727
envsubst_config
2828

29-
exec ${NGINX_BASE_DIR}/usr/sbin/nginx -c "$NGINX_CONF"
29+
exec ${NGINX_BASE_DIR}/nginx -c "$NGINX_CONF"

Dockerfile

+8-8
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,25 @@ FROM openshift/base-centos7
22

33
MAINTAINER Greg Turner <[email protected]>
44

5-
ENV NGINX_VERSION 1.8
6-
ENV NGINX_BASE_DIR /opt/rh/rh-nginx18/root
7-
ENV NGINX_VAR_DIR /var/opt/rh/rh-nginx18
5+
ENV NGINX_BASE_DIR /usr/sbin
6+
ENV NGINX_VAR_DIR /var
87

98
LABEL io.k8s.description="Nginx static file server and reverse proxy" \
10-
io.k8s.display-name="nginx builder ${NGINX_VERSION}" \
9+
io.k8s.display-name="nginx builder" \
1110
io.openshift.expose-services="8080:http" \
1211
io.openshift.tags="builder,nginx,webserver"
1312

13+
COPY ./etc/yum.repos.d/nginx.repo /opt/app-root/etc/yum.repos.d/ngnix.repo
1414

1515
RUN yum install --setopt=tsflags=nodocs -y centos-release-scl-rh \
16-
&& yum install --setopt=tsflags=nodocs -y bcrypt rh-nginx${NGINX_VERSION/\./} \
16+
&& yum install --setopt=tsflags=nodocs -y bcrypt nginx \
1717
&& yum clean all -y \
18-
&& mkdir -p /opt/app-root/etc/nginx.conf.d /opt/app-root/run \
18+
&& mkdir -p /opt/app-root/etc/nginx.conf.d /opt/app-root/run $NGINX_VAR_DIR/cache/nginx \
1919
&& chmod -R a+rx $NGINX_VAR_DIR/lib/nginx \
2020
&& chmod -R a+rwX $NGINX_VAR_DIR/lib/nginx/tmp \
21-
$NGINX_VAR_DIR/log \
21+
$NGINX_VAR_DIR/log/nginx \
2222
$NGINX_VAR_DIR/run \
23-
$NGINX_VAR_DIR/cache \
23+
$NGINX_VAR_DIR/cache/nginx \
2424
/opt/app-root/run
2525

2626
COPY ./etc/ /opt/app-root/etc

etc/nginx.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ events {
66
worker_connections 1024;
77
}
88
http {
9-
include /etc/opt/rh/rh-nginx18/nginx/mime.types;
9+
include /etc/nginx/mime.types;
1010
default_type application/octet-stream;
1111
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
1212
'$status $body_bytes_sent "$http_referer" '
@@ -18,7 +18,7 @@ http {
1818
keepalive_timeout 65;
1919
server_name_in_redirect off;
2020
port_in_redirect off;
21-
proxy_cache_path /var/opt/rh/rh-nginx18/cache levels=1:2 keys_zone=globalcache:10m max_size=1g inactive=60m use_temp_path=off;
21+
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=globalcache:10m max_size=1g inactive=60m use_temp_path=off;
2222

2323
include /opt/app-root/etc/nginx.conf.d/*.conf;
2424
}

etc/yum.repos.d/nginx.repo

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[nginx]
2+
name=nginx repo
3+
baseurl=http://nginx.org/packages/centos/7/x86_64/
4+
gpgcheck=0
5+
enabled=1

0 commit comments

Comments
 (0)