mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-03-09 15:40:18 +00:00
first commit
This commit is contained in:
commit
5352a2b94a
396 changed files with 10008 additions and 0 deletions
37
system/BASE_SOFT/APACHE/2.4/sites-available/000-default.conf
Normal file
37
system/BASE_SOFT/APACHE/2.4/sites-available/000-default.conf
Normal file
|
@ -0,0 +1,37 @@
|
|||
<VirtualHost *:8080>
|
||||
ServerName default
|
||||
|
||||
## Docroot
|
||||
DocumentRoot "/var/www/default/"
|
||||
|
||||
## FastCgi
|
||||
<IfModule mod_fastcgi.c>
|
||||
FastCGIExternalServer /fastcgi-pool-default -idle-timeout 25 -flush -socket /var/run/php-www.sock -pass-header Authorization
|
||||
Alias /usr/lib/cgi-bin/default /fastcgi-pool-default
|
||||
Action application/x-httpd-php-default /usr/lib/cgi-bin/default
|
||||
AddType application/x-httpd-php-default .php
|
||||
|
||||
<LocationMatch "/(status|fpm-ping)">
|
||||
RewriteEngine Off
|
||||
SetHandler php-fcgi-virt
|
||||
Action php-fcgi-virt /usr/lib/cgi-bin/default virtual
|
||||
Require all granted
|
||||
</LocationMatch>
|
||||
|
||||
AllowEncodedSlashes On
|
||||
</IfModule>
|
||||
|
||||
## Directories
|
||||
<Directory "/var/www/default/">
|
||||
AllowOverride None
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
## Settings debugging information in headers.
|
||||
SetEnvIf Remote_Addr 127.0.0.1 DEBUG
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-Vhost-ID "default" env=DEBUG
|
||||
|
||||
</IfModule>
|
||||
|
||||
</VirtualHost>
|
|
@ -0,0 +1,32 @@
|
|||
<VirtualHost *:8080>
|
||||
ServerName peplum.com
|
||||
|
||||
## Server aliases
|
||||
ServerAlias www.peplum.com
|
||||
|
||||
## Docroot
|
||||
DocumentRoot "/var/www/sites/peplum.com"
|
||||
|
||||
## FastCgi
|
||||
<IfModule mod_fastcgi.c>
|
||||
FastCGIExternalServer /fastcgi-pool-peplum.com -idle-timeout 15 -flush -socket /var/run/php-www.sock -pass-header Authorization
|
||||
Alias /usr/lib/cgi-bin/peplum.com /fastcgi-pool-peplum.com
|
||||
Action application/x-httpd-php-peplum.com /usr/lib/cgi-bin/peplum.com
|
||||
AddType application/x-httpd-php-peplum.com .php
|
||||
AllowEncodedSlashes On
|
||||
</IfModule>
|
||||
|
||||
## Directories
|
||||
<Directory "/var/www/sites/peplum.com">
|
||||
AllowOverride All
|
||||
Require all granted
|
||||
</Directory>
|
||||
|
||||
## Settings debugging information in headers.
|
||||
SetEnvIf Remote_Addr 127.0.0.1 DEBUG
|
||||
<IfModule mod_headers.c>
|
||||
Header set X-Vhost-ID "peplum.com" env=DEBUG
|
||||
|
||||
</IfModule>
|
||||
|
||||
</VirtualHost>
|
0
system/BASE_SOFT/APACHE/2.4/sites-available/README.md
Normal file
0
system/BASE_SOFT/APACHE/2.4/sites-available/README.md
Normal file
Loading…
Add table
Add a link
Reference in a new issue