Merge branch 'master' into master
This commit is contained in:
@ -1,16 +1,16 @@
|
||||
FROM webdevops/apache:ubuntu-16.04
|
||||
FROM webdevops/apache:ubuntu-18.04
|
||||
|
||||
LABEL maintainer="Eric Pfeiffer <computerfr33k@users.noreply.github.com>"
|
||||
|
||||
ARG DOCUMENT_ROOT=/var/www/
|
||||
ARG PHP_UPSTREAM_CONTAINER=php-fpm
|
||||
ARG PHP_UPSTREAM_PORT=9000
|
||||
ARG PHP_UPSTREAM_TIMEOUT=60
|
||||
ARG DOCUMENT_ROOT=/var/www/
|
||||
ARG APACHE_INSTALL_HTTP2=false
|
||||
|
||||
ENV WEB_PHP_SOCKET=${PHP_UPSTREAM_CONTAINER}:${PHP_UPSTREAM_PORT}
|
||||
|
||||
ENV WEB_DOCUMENT_ROOT=${DOCUMENT_ROOT}
|
||||
|
||||
ENV APACHE_HTTP2=${APACHE_INSTALL_HTTP2}
|
||||
ENV WEB_PHP_TIMEOUT=${PHP_UPSTREAM_TIMEOUT}
|
||||
|
||||
ENV LOG_STDOUT=/var/log/apache2/access.log
|
||||
@ -23,6 +23,10 @@ WORKDIR /var/www/
|
||||
|
||||
COPY vhost.conf /etc/apache2/sites-enabled/vhost.conf
|
||||
|
||||
ADD ./startup.sh /opt/startup.sh
|
||||
|
||||
ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"]
|
||||
|
||||
CMD ["supervisord"]
|
||||
CMD ["/bin/bash", "/opt/startup.sh"]
|
||||
|
||||
EXPOSE 80 443
|
@ -13,4 +13,6 @@
|
||||
</IfVersion>
|
||||
</Directory>
|
||||
|
||||
ErrorLog /var/log/apache2/error.log
|
||||
CustomLog /var/log/apache2/access.log combined
|
||||
</VirtualHost>
|
||||
|
32
apache2/sites/default.apache.ssl.example
Normal file
32
apache2/sites/default.apache.ssl.example
Normal file
@ -0,0 +1,32 @@
|
||||
<VirtualHost *:80>
|
||||
ServerName laradock.test
|
||||
ServerAlias *.laradock.test
|
||||
|
||||
RewriteEngine On
|
||||
RewriteCond %{HTTPS} !on
|
||||
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
|
||||
</VirtualHost>
|
||||
|
||||
<VirtualHost *:443>
|
||||
ServerName laradock.test
|
||||
ServerAlias *.laradock.test
|
||||
DocumentRoot /var/www/
|
||||
Options Indexes FollowSymLinks
|
||||
|
||||
SSLEngine on
|
||||
SSLCertificateFile /etc/apache2/ssl/ssl_site.crt
|
||||
SSLCertificateKeyFile /etc/apache2/ssl/ssl_site.key
|
||||
|
||||
<Directory "/var/www/">
|
||||
AllowOverride All
|
||||
<IfVersion < 2.4>
|
||||
Allow from all
|
||||
</IfVersion>
|
||||
<IfVersion >= 2.4>
|
||||
Require all granted
|
||||
</IfVersion>
|
||||
</Directory>
|
||||
|
||||
ErrorLog /var/log/apache2/error.log
|
||||
CustomLog /var/log/apache2/access.log combined
|
||||
</VirtualHost>
|
4
apache2/ssl/.gitignore
vendored
Normal file
4
apache2/ssl/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*.crt
|
||||
*.csr
|
||||
*.key
|
||||
*.pem
|
0
apache2/ssl/.gitkeep
Normal file
0
apache2/ssl/.gitkeep
Normal file
21
apache2/startup.sh
Normal file
21
apache2/startup.sh
Normal file
@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
|
||||
mkdir /etc/apache2/ssl 2> /dev/null
|
||||
|
||||
# Change laradock.test to the URL to be used
|
||||
if [ ${APACHE_HTTP2} = true ]; then
|
||||
if [ ! -f /etc/apache2/ssl/ssl_site.crt ]; then
|
||||
openssl genrsa -out "/etc/apache2/ssl/ssl_site.key" 2048
|
||||
openssl rand -out /root/.rnd -hex 256
|
||||
openssl req -new -key "/etc/apache2/ssl/ssl_site.key" -out "/etc/apache2/ssl/ssl_site.csr" -subj "/CN=laradock.test/O=Laradock/C=BR"
|
||||
openssl x509 -req -days 365 -extfile <(printf "subjectAltName=DNS:laradock.test,DNS:*.laradock.test") -in "/etc/apache2/ssl/ssl_site.csr" -signkey "/etc/apache2/ssl/ssl_site.key" -out "/etc/apache2/ssl/ssl_site.crt"
|
||||
fi
|
||||
|
||||
a2enmod rewrite
|
||||
a2enmod headers
|
||||
a2enmod proxy proxy_html proxy_http xml2enc ssl http2
|
||||
service apache2 restart
|
||||
fi
|
||||
|
||||
# Start supervisord in foreground
|
||||
supervisord
|
Reference in New Issue
Block a user