diff options
Diffstat (limited to 'www/codeigniter-devel/files')
5 files changed, 85 insertions, 0 deletions
diff --git a/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in new file mode 100644 index 000000000000..ec28ab4ab179 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-development-cgi.conf.in @@ -0,0 +1,19 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% +Alias /codeigniter %%WWWDIR%% + +%%HASHMARK%%<Directory %%DOCSDIR%%> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Directory> + +<Location /codeigniter> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-development.conf.in b/www/codeigniter-devel/files/codeigniter-development.conf.in new file mode 100644 index 000000000000..b339faae05b5 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-development.conf.in @@ -0,0 +1,16 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +%%HASHMARK%%Alias /codeigniter/user_guide %%DOCSDIR%% +Alias /codeigniter %%WWWDIR%% + +%%HASHMARK%%<Directory %%DOCSDIR%%> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Directory> + +<Location /codeigniter> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in new file mode 100644 index 000000000000..7cfee81db010 --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-production-cgi.conf.in @@ -0,0 +1,19 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +Action php-script %%PHPCGI%% +AddHandler php-script .php + +DocumentRoot %%WWWDIR%% +%%HASHMARK%%Alias /user_guide %%DOCSDIR%% + +%%HASHMARK%%<Location /user_guide> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Location> + +<Location /> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/codeigniter-production.conf.in b/www/codeigniter-devel/files/codeigniter-production.conf.in new file mode 100644 index 000000000000..2b9b97863ccc --- /dev/null +++ b/www/codeigniter-devel/files/codeigniter-production.conf.in @@ -0,0 +1,16 @@ +AddType application/x-httpd-php .php +AddType application/x-httpd-php-source .phps +DirectoryIndex index.php index.html + +DocumentRoot %%WWWDIR%% +%%HASHMARK%%Alias /user_guide %%DOCSDIR%% + +%%HASHMARK%%<Location /user_guide> +%%HASHMARK%% Order deny,allow +%%HASHMARK%% Allow from all +%%HASHMARK%%</Location> + +<Location /> + Order deny,allow + Allow from all +</Location> diff --git a/www/codeigniter-devel/files/pkg-message.in b/www/codeigniter-devel/files/pkg-message.in new file mode 100644 index 000000000000..bb521059300d --- /dev/null +++ b/www/codeigniter-devel/files/pkg-message.in @@ -0,0 +1,15 @@ + +********************************************************************* +You have just installed the CodeIgniter web application framework. + +Note that you should restart your Apache web server to ensure that +the CodeIgniter configuration file is loaded. + +Optional post-installation instructions include: + +- Open the %%WWWDIR%%/system/application/config/config.php + file with a text editor and set your base URL. + +- If you intend to use a database, open the + %%WWWDIR%%/system/application/config/database.php + file with a text editor and set your database settings. |
