Permalink
Cannot retrieve contributors at this time
45 lines (32 sloc)
1.17 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
pim-community-dev/docker/httpd.conf
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ServerRoot "/usr/local/apache2" | |
| Listen 80 | |
| LoadModule authz_host_module modules/mod_authz_host.so | |
| LoadModule authz_core_module modules/mod_authz_core.so | |
| LoadModule mpm_event_module modules/mod_mpm_event.so | |
| LoadModule reqtimeout_module modules/mod_reqtimeout.so | |
| LoadModule filter_module modules/mod_filter.so | |
| LoadModule mime_module modules/mod_mime.so | |
| LoadModule log_config_module modules/mod_log_config.so | |
| LoadModule env_module modules/mod_env.so | |
| LoadModule setenvif_module modules/mod_setenvif.so | |
| LoadModule proxy_module modules/mod_proxy.so | |
| LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so | |
| LoadModule unixd_module modules/mod_unixd.so | |
| LoadModule rewrite_module modules/mod_rewrite.so | |
| User daemon | |
| Group daemon | |
| ServerAdmin you@example.com | |
| <Files ".ht*"> | |
| Require all denied | |
| </Files> | |
| ErrorLog /proc/self/fd/2 | |
| LogLevel warn | |
| LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined | |
| LogFormat "%h %l %u %t \"%r\" %>s %b" common | |
| CustomLog /proc/self/fd/1 common | |
| TypesConfig conf/mime.types | |
| <Location "/index.php"> | |
| SetHandler "proxy:fcgi://fpm:9000" | |
| </Location> | |
| SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0 | |
| Include /usr/local/apache2/conf/vhost.conf |