Future-proof Decidim passenger + nginx compilation
This commit is contained in:
parent
547c3cf84f
commit
c9978e21c9
@ -21,11 +21,12 @@ RUN EOF
|
|||||||
adduser -S -u 8080 -h /srv/decidim-app -s /sbin/nologin -G decidim -g decidim decidim
|
adduser -S -u 8080 -h /srv/decidim-app -s /sbin/nologin -G decidim -g decidim decidim
|
||||||
|
|
||||||
# Compile nginx
|
# Compile nginx
|
||||||
# taken from passenger-install-nginx-module
|
# Minimized version of /usr/local/bin/passenger-install-nginx-module
|
||||||
|
NGINX_VERSION=$(grep ' PREFERRED_NGINX_VERSION' /usr/local/lib/ruby/gems/2.6.0/gems/passenger-*/src/ruby_supportlib/phusion_passenger.rb | grep -Eo '([0-9\.]+)')
|
||||||
cd /tmp
|
cd /tmp
|
||||||
wget https://nginx.org/download/nginx-1.17.3.tar.gz
|
wget https://nginx.org/download/nginx-${NGINX_VERSION}.tar.gz
|
||||||
tar xf nginx-1.17.3.tar.gz
|
tar xf nginx-*.tar.gz
|
||||||
cd nginx-1.17.3
|
cd nginx-*
|
||||||
./configure \
|
./configure \
|
||||||
--prefix=/var/lib/nginx \
|
--prefix=/var/lib/nginx \
|
||||||
--sbin-path=/usr/sbin/nginx \
|
--sbin-path=/usr/sbin/nginx \
|
||||||
@ -43,7 +44,7 @@ RUN EOF
|
|||||||
--with-http_stub_status_module \
|
--with-http_stub_status_module \
|
||||||
--with-http_addition_module \
|
--with-http_addition_module \
|
||||||
--with-cc-opt=-Wno-error \
|
--with-cc-opt=-Wno-error \
|
||||||
--add-module=/usr/local/lib/ruby/gems/2.6.0/gems/passenger-6.0.4/src/nginx_module
|
--add-module=/usr/local/lib/ruby/gems/2.6.0/gems/passenger-*/src/nginx_module
|
||||||
make -j $(getconf _NPROCESSORS_ONLN)
|
make -j $(getconf _NPROCESSORS_ONLN)
|
||||||
make install
|
make install
|
||||||
rm -f /etc/nginx/*.default
|
rm -f /etc/nginx/*.default
|
||||||
|
Loading…
Reference in New Issue
Block a user