first commit

This commit is contained in:
2026-03-24 08:35:32 +00:00
commit d10aeda2be
5 changed files with 1937 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM php:apache
RUN apt-get update \
&& apt-get install -y curl libzip-dev vim zip mariadb-client ssl-cert \
&& docker-php-ext-install mysqli pdo_mysql zip \
&& chown -R 1000:www-data /var/www/html \
&& a2enmod rewrite ssl
RUN usermod -u 1000 www-data
RUN groupmod -g 1000 www-data
RUN find / -user 33 -exec 'chown -h www-data' {} ';'; exit 0
RUN find / -group 33 -exec 'chgrp -h www-data' {} ';'; exit 0
COPY ./conf/php.ini "$PHP_INI_DIR/php.ini"
COPY ./conf/status.conf /etc/apache2/mods-available/status.conf
RUN a2ensite default-ssl
#RUN ln -s ../sites-available/default-ssl.conf /etc/apache2/sites-enabled/default-ssl.conf
+18
View File
@@ -0,0 +1,18 @@
services:
apache2:
build: ./
image: apache2
container_name: apache2
restart: unless-stopped
volumes:
- ./www:/var/www/html/
- /opt/safetech:/opt/safetech
ports:
- 7080:80
- 7081:443
networks:
- fatbluefish
networks:
fatbluefish:
external: true
+29
View File
@@ -0,0 +1,29 @@
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
+1851
View File
File diff suppressed because it is too large Load Diff
+24
View File
@@ -0,0 +1,24 @@
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Uncomment and change the "192.0.2.0/24" to allow access from other hosts.
<Location /server-status>
SetHandler server-status
Require local
#Require ip 192.0.2.0/24
Require ip 172.18.0.0/24 192.168.1.0/24 185.91.42.172/24 185.86.23.226/24 78.129.241.103/32 82.34.43.172/24
</Location>
# Keep track of extended status information for each request
ExtendedStatus On
# Determine if mod_status displays the first 63 characters of a request or
# the last 63, assuming the request itself is greater than 63 chars.
# Default: Off
#SeeRequestTail On
<IfModule mod_proxy.c>
# Show Proxy LoadBalancer status in mod_status
ProxyStatus On
</IfModule>