summaryrefslogtreecommitdiff
path: root/config.php.sample
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-03-26 15:03:59 -0400
committerEvan Prodromou <evan@controlyourself.ca>2009-03-26 15:03:59 -0400
commit07eae0ce4d927851a839cf50d5cb9b7a06b979a2 (patch)
treeb9ddbbe1fb600ae96f3bda88a71eebe832bbb191 /config.php.sample
parent2becd5849d76e052ecfe066b5376a65b9c70fad6 (diff)
Support SSL for some, all, or no pages
Support SSL URLs either for all pages; no pages; or for sensitive pages accepting passwords, like login, registration, API, and others.
Diffstat (limited to 'config.php.sample')
-rw-r--r--config.php.sample10
1 files changed, 10 insertions, 0 deletions
diff --git a/config.php.sample b/config.php.sample
index 529e86f15..d62a54fe7 100644
--- a/config.php.sample
+++ b/config.php.sample
@@ -174,3 +174,13 @@ $config['sphinx']['port'] = 3312;
#http://taguri.org/ Examples:
#$config['integration']['taguri'] = 'example.net,2008';
#$config['integration']['taguri'] = 'admin@example.net,2009-03-09'
+
+#Don't use SSL
+#$config['site']['ssl'] = 'never';
+#Use SSL only for sensitive pages (like login, password change)
+#$config['site']['ssl'] = 'sometimes';
+#Use SSL for all pages
+#$config['site']['ssl'] = 'always';
+
+#Use a different hostname for SSL-encrypted pages
+#$config['site']['sslserver'] = 'secure.example.org';