etc/apache2

This commit is contained in:
2025-10-02 10:16:47 +02:00
parent 93a37bf144
commit f34bf34fa1
202 changed files with 3345 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<VirtualHost *:8000>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>

View File

@@ -0,0 +1,12 @@
<VirtualHost *:80>
ServerName neotech.neotech.fr
DocumentRoot /home/neotech/phpmyadmin
<Directory /home/neotech/phpmyadmin>
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php8.4-fpm-phpmyadmin_neotech.sock|fcgi://localhost/"
</FilesMatch>
</VirtualHost>

View File

@@ -0,0 +1,17 @@
<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>

View File

@@ -0,0 +1,17 @@
<VirtualHost *:8000>
ServerName boutique.eureka-informatique.fr
DocumentRoot /home/eureka/ps9
<Directory /home/eureka/ps9>
AllowOverride All
Options -Indexes
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php8.4-fpm-ps9_eureka.sock|fcgi://localhost/"
</FilesMatch>
ErrorLog /var/log/apache2/ps9_eureka.error.log
CustomLog /var/log/apache2/ps9_eureka.access.log vhost_proxy_combined
</VirtualHost>

View File

@@ -0,0 +1,17 @@
<VirtualHost *:8000>
ServerName https://www.eureka-informatique.fr
DocumentRoot /home/eureka/wp6
<Directory /home/eureka/wp6>
AllowOverride All
Options -Indexes
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php8.4-fpm-wp6_eureka.sock|fcgi://localhost/"
</FilesMatch>
ErrorLog /var/log/apache2/wp6_eureka.error.log
CustomLog /var/log/apache2/wp6_eureka.access.log vhost_proxy_combined
</VirtualHost>