Added Dockerfile build steps new file: wordpress/apache/Dockerfile Dockerfile with ssl optionspodman-compose-ssl
parent
119aedff9b
commit
396b4af76f
2 changed files with 19 additions and 1 deletions
@ -0,0 +1,18 @@ |
||||
FROM wordpress:6.6.1-php8.2-apache |
||||
|
||||
COPY /etc/letsencrypt/live/equilibrateit.com/privkey.pem /etc/ssl/certs/ |
||||
COPY /etc/letsencrypt/live/equilibrateit.com/fullchain.pem /etc/ssl/private/ |
||||
|
||||
RUN set -eux; \ |
||||
{ \ |
||||
echo '<VirtualHost _default_:443>'; \ |
||||
|
||||
|
||||
|
||||
|
||||
# these IP ranges are reserved for "private" use and should thus *usually* be safe inside Docker |
||||
echo 'ServerName equilibrateit.com:443'; \ |
||||
echo 'SSLEngine on'; \ |
||||
echo 'SSLCertificateKeyFile /etc/ssl/certs/privkey.pem'; \ |
||||
echo 'SSLCertificateFile /etc/ssl/private/fullchain.pem'; \ |
||||
} > /etc/apache2/sites-available/equilibrateit.com-ssl.conf; \ |
Loading…
Reference in new issue