This repository has been archived by the owner on May 13, 2020. It is now read-only.
forked from gammerce/sklep-sms
-
Notifications
You must be signed in to change notification settings - Fork 2
SSL? Problem #7
Comments
Dodałeś sobie wymuszenie przekierowania z http na https? |
Tak wygląda .htacces |
Nope 😄 Moduł socket wykorzystywany przez plugin może działać tylko po protokole HTTP,
|
Dzięki wielkie, śmiga jak należy
Screena do coda wyślę już w domu
…On Fri, 10 May 2019, 18:43 Dawid Janik, ***@***.***> wrote:
Nope 😄 Moduł socket wykorzystywany przez plugin może działać tylko po
protokole HTTP,
a tutaj dodałeś już na samym początku przekierowanie na HTTPS, co wywołuje
problem.
Jeśli chcesz wymuszać strict-https musisz dodać wyjątek dla
servers_stuff.php w rule:
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
RewriteEngine On
# Redirect To HTTPS Except For Servers Script...
RewriteCond %{HTTPS} !=on
RewriteCond %{REQUEST_URI} !^/servers_stuff.php$
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#7 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALJ5CWS6GN5SIN6HQLBFVGTPUWQ3ZANCNFSM4HMEQECQ>
.
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Witam,
Po aktualizacji sklepu SMS (web) oraz dodaniu certyfikatu SSL wyskakuje taki problem
The text was updated successfully, but these errors were encountered: