
To legit to thoom!
- Torin
- Exile
- Post #2
To legit to thoom!
Congrats on your certificate. 
99.9% of pages on the site don't need to be secure. It's only an issue with logging in and passwords. Would it be a lot of trouble to make http links, except for the login page, which would be https?
99.9% of pages on the site don't need to be secure. It's only an issue with logging in and passwords. Would it be a lot of trouble to make http links, except for the login page, which would be https?
- noivad
- Exile
- Post #3
To legit to thoom!
Yes. I'd have to dig into the mediawiki php files to change just those links, and undo my redirect. I realize only the password portion needs to be protected, but it's easier just to protect the whole area.
- Skirwan
- Exile
- Post #4
To legit to thoom!
You could just use Mod_Rewrite to redirect access to the login pages to use SSL. Much less work.noivad wrote:Yes. I'd have to dig into the mediawiki php files to change just those links, and undo my redirect.
- noivad
- Exile
- Post #5
To legit to thoom!
so you're saying make point to the https? I'll have to look up the syntax.
Code: Select all
www.noivad.net/clump/index.php?title=Special:Userlogin*- Skirwan
- Exile
- Post #6
To legit to thoom!
Off the top of my head, test it and check the docs before trusting me:
Code: Select all
RewriteCond %{SERVER_PORT} 80
RewriteRule .*/clump/index\.php\?title=Special:Userlogin\* https://www.noivad.net/clump/index.php?title=Special:Userlogin* [R,L,NC]
- noivad
- Exile
- Post #7
To legit to thoom!
I mean to test this I just gotta get some time! gimme 90 days like the CL web site!Skirwan wrote:Off the top of my head, test it and check the docs before trusting me:Code: Select all
RewriteCond %{SERVER_PORT} 80 RewriteRule .*/clump/index\.php\?title=Special:Userlogin\* https://www.noivad.net/clump/index.php?title=Special:Userlogin* [R,L,NC]