Files
namaste/deployment/apache.conf
gramps 373ebc8c93 Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node.
Original corpo Bitbucket history not included — clean archive commit.
2026-04-05 09:49:30 -07:00

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>