mirror of
https://github.com/myronblair/do-server-config
synced 2026-07-27 21:18:32 -05:00
[orbis] Weekly backup 2026-07-07 — 318 files changed, 48597 insertions(+), 7 deletions(-)
This commit is contained in:
@@ -3,6 +3,7 @@ virtualHost Example{
|
||||
vhRoot Example/
|
||||
configFile conf/vhosts/Example/vhconf.conf
|
||||
listener Default{
|
||||
map worktracking.orbishosting.com worktracking.orbishosting.com
|
||||
map orbis.orbishosting.com orbis.orbishosting.com
|
||||
map mail.parkerslingshotrentals.com mail.parkerslingshotrentals.com
|
||||
map parkerslingshotrentals.com parkerslingshotrentals.com
|
||||
@@ -21,6 +22,7 @@ virtualHost tomtomgames.com {
|
||||
vhRoot /home/$VH_NAME
|
||||
configFile $SERVER_ROOT/conf/vhosts/$VH_NAME/vhost.conf
|
||||
listener SSL {
|
||||
map worktracking.orbishosting.com worktracking.orbishosting.com
|
||||
map mail.tomtomgames.com mail.tomtomgames.com
|
||||
map orbis.orbishosting.com orbis.orbishosting.com
|
||||
map mail.parkerslingshotrentals.com mail.parkerslingshotrentals.com
|
||||
@@ -37,6 +39,7 @@ virtualHost mail.tomtomgames.com {
|
||||
vhRoot /home/tomtomgames.com
|
||||
configFile $SERVER_ROOT/conf/vhosts/$VH_NAME/vhost.conf
|
||||
listener SSL IPv6 {
|
||||
map worktracking.orbishosting.com worktracking.orbishosting.com
|
||||
map mail.tomtomgames.com mail.tomtomgames.com
|
||||
map orbis.orbishosting.com orbis.orbishosting.com
|
||||
map mail.parkerslingshotrentals.com mail.parkerslingshotrentals.com
|
||||
@@ -76,3 +79,6 @@ virtualHost mail.parkerslingshotrentals.com {
|
||||
virtualHost orbis.orbishosting.com {
|
||||
vhRoot /home/$VH_NAME
|
||||
configFile $SERVER_ROOT/conf/vhosts/$VH_NAME/vhost.conf
|
||||
virtualHost worktracking.orbishosting.com {
|
||||
vhRoot /home/$VH_NAME
|
||||
configFile $SERVER_ROOT/conf/vhosts/$VH_NAME/vhost.conf
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# Websites on DO server — 2026-07-05
|
||||
# Websites on DO server — 2026-07-07
|
||||
|
||||
- epictravelexpeditions.com (3.8M)
|
||||
- orbishosting.com (113M)
|
||||
- orbis.orbishosting.com (40K)
|
||||
- parkerslingshotrentals.com (308K)
|
||||
- tomsjavajive.com (3.8M)
|
||||
- tomtomgames.com (872K)
|
||||
- parkerslingshotrentals.com (300K)
|
||||
- tomsjavajive.com (3.9M)
|
||||
- tomtomgames.com (868K)
|
||||
- worktracking.orbishosting.com (124K)
|
||||
|
||||
+91
@@ -0,0 +1,91 @@
|
||||
docRoot $VH_ROOT/public_html
|
||||
vhDomain $VH_NAME
|
||||
vhAliases www.$VH_NAME
|
||||
adminEmails admin@worktracking.orbishosting.com
|
||||
enableGzip 1
|
||||
enableIpGeo 1
|
||||
|
||||
index {
|
||||
useServer 0
|
||||
indexFiles index.php, index.html
|
||||
}
|
||||
|
||||
errorlog $VH_ROOT/logs/$VH_NAME.error_log {
|
||||
useServer 0
|
||||
logLevel WARN
|
||||
rollingSize 10M
|
||||
}
|
||||
|
||||
accesslog $VH_ROOT/logs/$VH_NAME.access_log {
|
||||
useServer 0
|
||||
logFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i""
|
||||
logHeaders 5
|
||||
rollingSize 10M
|
||||
keepDays 10
|
||||
compressArchive 1
|
||||
}
|
||||
|
||||
scripthandler {
|
||||
add lsapi:workt7085 php
|
||||
}
|
||||
|
||||
extprocessor workt7085 {
|
||||
type lsapi
|
||||
address UDS://tmp/lshttpd/workt7085.sock
|
||||
maxConns 10
|
||||
env LSAPI_CHILDREN=10
|
||||
initTimeout 600
|
||||
retryTimeout 0
|
||||
persistConn 1
|
||||
pcKeepAliveTimeout 1
|
||||
respBuffer 0
|
||||
autoStart 1
|
||||
path /usr/local/lsws/lsphp85/bin/lsphp
|
||||
extUser workt7085
|
||||
extGroup workt7085
|
||||
memSoftLimit 1024M
|
||||
memHardLimit 1024M
|
||||
procSoftLimit 400
|
||||
procHardLimit 500
|
||||
}
|
||||
|
||||
phpIniOverride {
|
||||
php_admin_value open_basedir "/tmp:$VH_ROOT"
|
||||
}
|
||||
|
||||
module cache {
|
||||
storagePath /usr/local/lsws/cachedata/$VH_NAME
|
||||
}
|
||||
|
||||
rewrite {
|
||||
enable 1
|
||||
autoLoadHtaccess 1
|
||||
}
|
||||
|
||||
context /.well-known/acme-challenge {
|
||||
location /usr/local/lsws/Example/html/.well-known/acme-challenge
|
||||
allowBrowse 1
|
||||
|
||||
rewrite {
|
||||
enable 0
|
||||
}
|
||||
addDefaultCharset off
|
||||
|
||||
phpIniOverride {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
vhssl {
|
||||
keyFile /etc/letsencrypt/live/worktracking.orbishosting.com/privkey.pem
|
||||
certFile /etc/letsencrypt/live/worktracking.orbishosting.com/fullchain.pem
|
||||
certChain 1
|
||||
sslProtocol 24
|
||||
enableECDHE 1
|
||||
renegProtection 1
|
||||
sslSessionCache 1
|
||||
enableSpdy 15
|
||||
enableStapling 1
|
||||
ocspRespMaxAge 86400
|
||||
}
|
||||
Reference in New Issue
Block a user