Compare commits

...

2 Commits

Author SHA1 Message Date
Markus Opolka
b1a3e04cbc Upgrading to LTS Version 3.22.14+200423 2020-05-04 17:05:29 +02:00
Markus Opolka
3639cc38e8 Fix nginx example config
- Fixes issue #30
2020-04-30 08:34:17 +02:00
4 changed files with 7 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
FROM php:7.2-apache FROM php:7.2-apache
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.22.13+200415' ARG version='3.22.14+200423'
ARG sha256_checksum='bbf6cc8de980e495f3956ccdee69677ee8ce0c8b0d56e451d12e34c9f899e1d5' ARG sha256_checksum='c148af72e9b26c7803c8e98815ffed1a7bd75b10eefc7791e3826c4dc9553b62'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm-alpine FROM php:7.2-fpm-alpine
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.22.13+200415' ARG version='3.22.14+200423'
ARG sha256_checksum='bbf6cc8de980e495f3956ccdee69677ee8ce0c8b0d56e451d12e34c9f899e1d5' ARG sha256_checksum='c148af72e9b26c7803c8e98815ffed1a7bd75b10eefc7791e3826c4dc9553b62'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -1,7 +1,7 @@
FROM php:7.2-fpm FROM php:7.2-fpm
LABEL maintainer="markus@martialblog.de" LABEL maintainer="markus@martialblog.de"
ARG version='3.22.13+200415' ARG version='3.22.14+200423'
ARG sha256_checksum='bbf6cc8de980e495f3956ccdee69677ee8ce0c8b0d56e451d12e34c9f899e1d5' ARG sha256_checksum='c148af72e9b26c7803c8e98815ffed1a7bd75b10eefc7791e3826c4dc9553b62'
# Install OS dependencies # Install OS dependencies
RUN set -ex; \ RUN set -ex; \

View File

@@ -12,6 +12,7 @@ http {
listen 80; listen 80;
index index.php; index index.php;
set $host_path "/var/www/html"; set $host_path "/var/www/html";
include /etc/nginx/mime.types;
root /var/www/html; root /var/www/html;
server_name localhost; server_name localhost;
charset utf-8; charset utf-8;