Prestashop - ecommerce online shop: Difference between revisions

From Skytech
Jump to navigation Jump to search
(Created page with "Category:Linux * https://www.prestashop.com/en/")
 
No edit summary
 
Line 2: Line 2:


* https://www.prestashop.com/en/
* https://www.prestashop.com/en/

Fix ssl behind haproxy ssl-terminator

<pre>
# Login to mysql and:

UPDATE ps_configuration SET value = 1 WHERE name = 'PS_SSL_ENABLED';
UPDATE ps_configuration SET value = 1 WHERE name = 'PS_SSL_ENABLED_EVERYWHERE';

# Add the next line to the .htacces file to avoid teh loop redirect issue with SSL enabled:
SetEnv HTTPS On

</pre>

Latest revision as of 15:17, 5 July 2020


Fix ssl behind haproxy ssl-terminator

# Login to mysql and:

UPDATE ps_configuration SET value = 1 WHERE name = 'PS_SSL_ENABLED';
UPDATE ps_configuration SET value = 1 WHERE name = 'PS_SSL_ENABLED_EVERYWHERE';

# Add the next line to the .htacces file to avoid teh loop redirect issue with SSL enabled:
SetEnv HTTPS On