fix default nginx page from showing
Some checks failed
Publish Docker Image / docker (push) Failing after 24s

This commit is contained in:
Lee 2023-10-13 19:44:24 +01:00
parent fd60603728
commit f342efdabf
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ WORKDIR /tmp
RUN wget https://nginx.org/download/nginx-1.25.2.tar.gz
RUN tar -xzvf nginx-1.25.2.tar.gz
WORKDIR /tmp/nginx-1.25.2
RUN ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin/nginx
RUN ../configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin/nginx --conf-path=/etc/nginx/nginx.conf
RUN make
RUN make install

View File

@ -41,7 +41,7 @@ function start() {
echo "Starting PHP & Nginx"
php-fpm81 &&
chmod 777 /run/php/php.sock &&
nginx -g 'daemon off;'
/usr/local/sbin/nginx -g 'daemon off;'
}
# Start Nginx and retry if it fails