diff options
author | Rong-En Fan <rafan@FreeBSD.org> | 2007-04-06 14:30:23 +0000 |
---|---|---|
committer | Rong-En Fan <rafan@FreeBSD.org> | 2007-04-06 14:30:23 +0000 |
commit | 9e86fe619cf9c17c1c8e275b5adde0b47a04e5c7 (patch) | |
tree | c542e0f9b29492dc233f4a8f6c4655181ddae587 /www/cakephp11/files | |
parent | 62b59b2aef60446974c90152cfa867ef54fc3855 (diff) |
Notes
Diffstat (limited to 'www/cakephp11/files')
-rw-r--r-- | www/cakephp11/files/cakephp-development-cgi.conf.in | 13 | ||||
-rw-r--r-- | www/cakephp11/files/cakephp-production-cgi.conf.in | 13 | ||||
-rw-r--r-- | www/cakephp11/files/pkg-message.in | 3 |
3 files changed, 27 insertions, 2 deletions
diff --git a/www/cakephp11/files/cakephp-development-cgi.conf.in b/www/cakephp11/files/cakephp-development-cgi.conf.in new file mode 100644 index 000000000000..b3c5c74af043 --- /dev/null +++ b/www/cakephp11/files/cakephp-development-cgi.conf.in @@ -0,0 +1,13 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +Alias /cakephp %%DATADIR%% + +<Location /cakephp> + DirectoryIndex index.php + Order deny,allow + Allow from all +</Location> diff --git a/www/cakephp11/files/cakephp-production-cgi.conf.in b/www/cakephp11/files/cakephp-production-cgi.conf.in new file mode 100644 index 000000000000..8565f6286351 --- /dev/null +++ b/www/cakephp11/files/cakephp-production-cgi.conf.in @@ -0,0 +1,13 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +DocumentRoot %%DATADIR%%/app/webroot + +<Location /> + DirectoryIndex index.php + Order deny,allow + Allow from all +</Location> diff --git a/www/cakephp11/files/pkg-message.in b/www/cakephp11/files/pkg-message.in index 8a4d8281a5e0..5175204423df 100644 --- a/www/cakephp11/files/pkg-message.in +++ b/www/cakephp11/files/pkg-message.in @@ -7,6 +7,5 @@ and making a donation to the development effort. Note that you should restart your Apache web server to ensure that the CakePHP configuration file is loaded. -Finally, be sure to check %%DATADIR%%/app/config/core.php for +Be sure to check %%DATADIR%%/app/config/core.php for additional framework configuration options. -********************************************************************* |