952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
26 lines
1009 B
ApacheConf
26 lines
1009 B
ApacheConf
# Namaste Virtual Host Configuration
|
|
<VirtualHost *:80>
|
|
ServerName namaste
|
|
ServerAlias namaste
|
|
ServerAdmin mike@givingassistant.org
|
|
DocumentRoot /home/app
|
|
DirectoryIndex index.php
|
|
<Directory /home/app>
|
|
Options Indexes FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
Satisfy Any
|
|
Require all granted
|
|
</Directory>
|
|
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
|
|
LogFormat "%h %l %u %t \"%r\" %>s %b" common
|
|
LogFormat "%{Referer}i -> %U" referer
|
|
LogFormat "%{User-agent}i" agent
|
|
CustomLog /var/log/namaste_log common
|
|
ErrorLog /var/log/namaste_error.log
|
|
CustomLog /var/log/namaste_access.log combined
|
|
|
|
# Possible values include: debug, info, notice, warn, error, crit,
|
|
# alert, emerg.
|
|
LogLevel warn
|
|
ServerSignature Off
|
|
</VirtualHost> |