Back to home page

EIC code displayed by LXR

 
 

    


Warning, /harvester/docker/httpd.conf is written in an unsupported language. File is not indexed.

0001 ServerRoot "/etc/httpd"
0002 ServerName localhost
0003 
0004 LoadModule mpm_event_module modules/mod_mpm_event.so
0005 LoadModule dir_module modules/mod_dir.so
0006 LoadModule authz_core_module modules/mod_authz_core.so
0007 LoadModule mime_module modules/mod_mime.so
0008 LoadModule unixd_module modules/mod_unixd.so
0009 LoadModule autoindex_module modules/mod_autoindex.so
0010 LoadModule alias_module modules/mod_alias.so
0011 
0012 TypesConfig /etc/mime.types
0013 
0014 PidFile /var/run/panda/httpd.pid
0015 
0016 # Port to Listen on
0017 Listen *:8080
0018 
0019 # In a basic setup httpd can only serve files from its document root
0020 DocumentRoot "/var/log/condor_logs"
0021 
0022 Alias /condor_logs/ "/var/log/condor_logs/"
0023 
0024 # Default file to serve
0025 DirectoryIndex disabled
0026 
0027 # Errors go to their own log
0028 ErrorLog logs/error_log
0029 
0030 # Never change this block
0031 <Directory />
0032   AllowOverride None
0033   Require all denied
0034 </Directory>
0035 
0036 # Allow documents to be served from the DocumentRoot
0037 <Directory "/var/log/condor_logs">
0038   Options +Indexes +FollowSymLinks
0039   Require all granted
0040 </Directory>
0041 
0042 IncludeOptional conf.d/*.conf