-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add metadata describing archive paths
- Loading branch information
nephomaniac
committed
Apr 6, 2016
1 parent
989ce11
commit e4c12d4
Showing
3 changed files
with
39 additions
and
0 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,2 @@ | ||
rpm_subdir = <%= @rpm_subdir%> | ||
python_subdir = <%= @python_subdir%> |
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,26 @@ | ||
<VirtualHost *:80> | ||
ServerName <%= node['hostname'] %> | ||
|
||
DocumentRoot <%= node['beachhead']["httpd"]["docroot"] %> | ||
<Directory <%= node['beachhead']['dependency_sandbox_dir'] %> > | ||
Options FollowSymLinks | ||
AllowOverride None | ||
</Directory> | ||
<Directory <%= node['beachhead']["httpd"]["docroot"] %> > | ||
Options Indexes FollowSymLinks MultiViews | ||
AllowOverride None | ||
</Directory> | ||
|
||
ErrorLog /var/log/httpd/error.log | ||
|
||
LogLevel debug | ||
|
||
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" combined | ||
CustomLog /var/log/httpd/access.log combined | ||
|
||
ServerSignature Off | ||
|
||
AddType application/x-httpd-php .php | ||
AddType application/x-httpd-php-source .phps | ||
DirectoryIndex index.php index.html | ||
</VirtualHost> |