update options again (pw)

This commit is contained in:
Mathematical Michael 2023-09-28 22:37:04 +00:00
parent df7d66c754
commit 46296a74ca
2 changed files with 4 additions and 3 deletions

View File

@ -10,12 +10,12 @@ services:
environment: environment:
- USER_UID=1001 - USER_UID=1001
- USER_GID=1001 - USER_GID=1001
restart: always
networks: networks:
- files - files
volumes: volumes:
#- ./public_html:/usr/local/apache2/htdocs #- ./public_html:/usr/local/apache2/htdocs
- /mnt/nfs/media:/usr/local/apache2/htdocs - /data:/usr/local/apache2/htdocs
- ./my-httpd.conf:/usr/local/apache2/conf/httpd.conf
ports: ports:
- "8080:80" - "8080:80"

View File

@ -63,6 +63,7 @@ Listen 80
# Example: # Example:
# LoadModule foo_module modules/mod_foo.so # LoadModule foo_module modules/mod_foo.so
# #
LoadModule mpm_event_module modules/mod_mpm_event.so LoadModule mpm_event_module modules/mod_mpm_event.so
#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so #LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
#LoadModule mpm_worker_module modules/mod_mpm_worker.so #LoadModule mpm_worker_module modules/mod_mpm_worker.so
@ -286,7 +287,7 @@ DocumentRoot "/usr/local/apache2/htdocs"
# It can be "All", "None", or any combination of the keywords: # It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit # AllowOverride FileInfo AuthConfig Limit
# #
AllowOverride None AllowOverride All
# #
# Controls who can get stuff from this server. # Controls who can get stuff from this server.