-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
flipkick
committed
May 16, 2013
1 parent
b715ab4
commit db22bf9
Showing
4 changed files
with
49 additions
and
3 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
File renamed without changes.
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 @@ | ||
# Managed by Puppet module knowshan/phppgadmin | ||
|
||
# | ||
# This configuration file maps the phppgadmin directory into the URL space. | ||
# By default this application is only accessible from the local host. | ||
# | ||
|
||
Alias /phpPgAdmin /usr/share/phppgadmin | ||
|
||
<Directory /usr/share/phppgadmin> | ||
|
||
DirectoryIndex index.php | ||
AllowOverride None | ||
|
||
order deny,allow | ||
deny from all | ||
allow from 127.0.0.0/255.0.0.0 ::1/128 | ||
|
||
<IfModule mod_php5.c> | ||
php_flag magic_quotes_gpc Off | ||
php_flag track_vars On | ||
php_value include_path . | ||
</IfModule> | ||
<IfModule !mod_php5.c> | ||
<IfModule mod_actions.c> | ||
<IfModule mod_cgi.c> | ||
AddType application/x-httpd-php .php | ||
Action application/x-httpd-php /cgi-bin/php | ||
</IfModule> | ||
<IfModule mod_cgid.c> | ||
AddType application/x-httpd-php .php | ||
Action application/x-httpd-php /cgi-bin/php | ||
</IfModule> | ||
</IfModule> | ||
</IfModule> | ||
|
||
</Directory> |