summaryrefslogtreecommitdiff
path: root/www/codeigniter/files
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2014-06-19 00:01:37 +0000
committerJohn Marino <marino@FreeBSD.org>2014-06-19 00:01:37 +0000
commit7adc0b0146e6f39da412420d23d650ff90af8772 (patch)
tree926e02cbed4b1695536afb85ce16e8e3355cf3d4 /www/codeigniter/files
parentwww/dojo: update to 1.10.0 (diff)
www/codeigniter: Support stage and update URL
PR: 189777 Submitted by: Zsolt Udvari Approved by: maintainer (Bo-Yi Wu) (first version) Verified by: Redports 8x pass
Diffstat (limited to 'www/codeigniter/files')
-rw-r--r--www/codeigniter/files/codeigniter.conf.in16
-rw-r--r--www/codeigniter/files/pkg-message.in20
2 files changed, 36 insertions, 0 deletions
diff --git a/www/codeigniter/files/codeigniter.conf.in b/www/codeigniter/files/codeigniter.conf.in
new file mode 100644
index 000000000000..b339faae05b5
--- /dev/null
+++ b/www/codeigniter/files/codeigniter.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/files/pkg-message.in b/www/codeigniter/files/pkg-message.in
new file mode 100644
index 000000000000..2dadc6fc1a07
--- /dev/null
+++ b/www/codeigniter/files/pkg-message.in
@@ -0,0 +1,20 @@
+
+*********************************************************************
+You have just installed the CodeIgniter web application framework.
+
+Note that you should restart your web server to ensure that
+the CodeIgniter configuration file is loaded.
+
+To use CodeIgniter:
+- Copy %%WWWDIR%%/index.php.sample as index.php to the root
+ of your project directory.
+- Copy the %%WWWDIR%%/application/config/ directory.
+ Edit files, especially base URL in config.php.
+- If you intend to use a database, copy and edit the
+ %%WWWDIR%%/application/config/database.php too.
+- For more information please check
+ http://ellislab.com/codeigniter/user-guide/installation/index.html
+
+- If you are upgrading from a prior release, please visit:
+ http://codeigniter.com/user_guide/installation/upgrading.html
+ for additional post-installation instructions.