diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-03-26 15:03:59 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-03-30 17:12:02 -0400 |
commit | e149f3d64b5c0a58b299fb607824a1cd515836a4 (patch) | |
tree | ddbbd8953ef55888474a56a8f92e6f14203ebea3 /config.php.sample | |
parent | 47b89aa2c3a3e07d6dc63cd5be1d558af8ece233 (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.sample | 10 |
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'; |