This repository was archived by the owner on Jan 13, 2025. It is now read-only.
File tree 5 files changed +17
-12
lines changed
5 files changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ test_config() {
88
88
envsubst_config
89
89
90
90
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
92
92
echo " nginx configuration not valid."
93
93
echo
94
94
for f in /opt/app-root/etc/nginx.conf.d/* ; do
Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ envsubst_config() {
26
26
27
27
envsubst_config
28
28
29
- exec ${NGINX_BASE_DIR} /usr/sbin/ nginx -c " $NGINX_CONF "
29
+ exec ${NGINX_BASE_DIR} /nginx -c " $NGINX_CONF "
Original file line number Diff line number Diff line change @@ -2,25 +2,25 @@ FROM openshift/base-centos7
2
2
3
3
MAINTAINER Greg Turner <
[email protected] >
4
4
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
8
7
9
8
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" \
11
10
io.openshift.expose-services="8080:http" \
12
11
io.openshift.tags="builder,nginx,webserver"
13
12
13
+ COPY ./etc/yum.repos.d/nginx.repo /opt/app-root/etc/yum.repos.d/ngnix.repo
14
14
15
15
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 \
17
17
&& 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 \
19
19
&& chmod -R a+rx $NGINX_VAR_DIR/lib/nginx \
20
20
&& chmod -R a+rwX $NGINX_VAR_DIR/lib/nginx/tmp \
21
- $NGINX_VAR_DIR/log \
21
+ $NGINX_VAR_DIR/log/nginx \
22
22
$NGINX_VAR_DIR/run \
23
- $NGINX_VAR_DIR/cache \
23
+ $NGINX_VAR_DIR/cache/nginx \
24
24
/opt/app-root/run
25
25
26
26
COPY ./etc/ /opt/app-root/etc
Original file line number Diff line number Diff line change 6
6
worker_connections 1024 ;
7
7
}
8
8
http {
9
- include /etc/opt/rh/rh-nginx18/ nginx/mime.types;
9
+ include /etc/nginx/mime.types;
10
10
default_type application/octet-stream;
11
11
log_format main '$remote_addr - $remote_user [$time_local ] "$request " '
12
12
'$status $body_bytes_sent "$http_referer " '
18
18
keepalive_timeout 65 ;
19
19
server_name_in_redirect off ;
20
20
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;
22
22
23
23
include /opt/app-root/etc/nginx.conf.d/*.conf;
24
24
}
Original file line number Diff line number Diff line change
1
+ [nginx]
2
+ name=nginx repo
3
+ baseurl=http://nginx.org/packages/centos/7/x86_64/
4
+ gpgcheck=0
5
+ enabled=1
You can’t perform that action at this time.
0 commit comments