18 lines
507 B
Plaintext
18 lines
507 B
Plaintext
|
|
<VirtualHost *:8000>
|
||
|
|
ServerName boutique8.eureka-informatique.fr
|
||
|
|
DocumentRoot /home/eureka/ps8
|
||
|
|
|
||
|
|
<Directory /home/eureka/ps8>
|
||
|
|
AllowOverride All
|
||
|
|
Options -Indexes
|
||
|
|
Require all granted
|
||
|
|
</Directory>
|
||
|
|
|
||
|
|
<FilesMatch \.php$>
|
||
|
|
SetHandler "proxy:unix:/run/php/php8.4-fpm-ps8_eureka.sock|fcgi://localhost/"
|
||
|
|
</FilesMatch>
|
||
|
|
|
||
|
|
ErrorLog /var/log/apache2/ps8_eureka.error.log
|
||
|
|
CustomLog /var/log/apache2/ps8_eureka.access.log vhost_proxy_combined
|
||
|
|
</VirtualHost>
|