-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from tmaeno/master
to publish condor_logs in container
- Loading branch information
Showing
3 changed files
with
45 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
ServerRoot "/etc/httpd" | ||
ServerName localhost | ||
|
||
LoadModule mpm_event_module modules/mod_mpm_event.so | ||
LoadModule dir_module modules/mod_dir.so | ||
LoadModule authz_core_module modules/mod_authz_core.so | ||
LoadModule mime_module modules/mod_mime.so | ||
LoadModule unixd_module modules/mod_unixd.so | ||
LoadModule autoindex_module modules/mod_autoindex.so | ||
|
||
TypesConfig /etc/mime.types | ||
|
||
PidFile /var/run/panda/httpd.pid | ||
|
||
# Port to Listen on | ||
Listen *:8080 | ||
|
||
# In a basic setup httpd can only serve files from its document root | ||
DocumentRoot "/var/log/panda/condor_logs" | ||
|
||
# Default file to serve | ||
DirectoryIndex disabled | ||
|
||
# Errors go to their own log | ||
ErrorLog logs/error_log | ||
|
||
# Never change this block | ||
<Directory /> | ||
AllowOverride None | ||
Require all denied | ||
</Directory> | ||
|
||
# Allow documents to be served from the DocumentRoot | ||
<Directory "/var/log/panda/condor_logs"> | ||
Options +Indexes +FollowSymLinks | ||
Require all granted | ||
</Directory> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
release_version = "0.2.17" | ||
release_version = "0.2.18" |