Skip to content

Commit

Permalink
Update httpd.md
Browse files Browse the repository at this point in the history
  • Loading branch information
rickygzz authored Jan 3, 2025
1 parent e589074 commit 6a5eeb2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions basics/installation/advanced/httpd.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ It may be incomplete, and remember you must adapt it for your own server's needs
<VirtualHost *:80> # or 443 for SSL support
ServerName example.com
DocumentRoot /path/to/prestashop
# SSLEngine on
# SSLCertificateFile /etc/apache2/ssl/example.crt
# SSLCertificateKeyFile /etc/apache2/ssl/example.key
DocumentRoot /path/to/prestashop
<Directory /path/to/prestashop>
# enable the .htaccess rewrites
AllowOverride All
Expand Down Expand Up @@ -79,7 +79,6 @@ Don't forget to edit this configuration to make it works.
<VirtualHost *:80> # or 443 for SSL support
ServerName example.com
DocumentRoot /path/to/prestashop
# SSLEngine on
# SSLCertificateFile /etc/apache2/ssl/example.crt
Expand All @@ -95,7 +94,7 @@ Don't forget to edit this configuration to make it works.
# with mod_rewrite or mod_autoindex
<FilesMatch \.php$>
# SetHandler proxy:fcgi://127.0.0.1:9000
SetHandler proxy:unix:/var/run/php/php7.2-fpm.sock|fcgi://dummy
SetHandler proxy:unix:/var/run/php/php8.3-fpm.sock|fcgi://dummy
</FilesMatch>
DocumentRoot /path/to/prestashop
Expand Down

0 comments on commit 6a5eeb2

Please sign in to comment.