📝 Update and organize project documentation and assets

This commit is contained in:
2026-01-26 22:46:14 +00:00
parent 4194dcfeff
commit b20e2185b2
1433 changed files with 64484 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<VirtualHost *:80>
ServerName dev.twohandsapp.com
Redirect permanent / https://dev.twohandsapp.com
</VirtualHost>
<VirtualHost _default_:443>
ServerAdmin pmeth@delvia.com
ServerName dev.twohandsapp.com
DocumentRoot /var/www/sites/dev.twohandsapp.com/dist
ErrorLog ${APACHE_LOG_DIR}/dev.twohandsapp.com_error.log
CustomLog ${APACHE_LOG_DIR}/dev.twohandsapp.com_access.log combined
<Directory /var/www/sites/dev.twohandsapp.com/dist>
Options +FollowSymlinks -Indexes
AllowOverride All
Require all granted
Allow from all
<IfModule mod_rewrite.c>
Options -MultiViews
</IfModule>
</Directory>
SSLEngine on
SSLCertificateFile /etc/ssl/private/app.twohandsapp.com.crt
SSLCertificateKeyFile /etc/ssl/private/app.twohandsapp.com.key
SSLCACertificateFile /etc/ssl/private/gd_bundle-g2-g1.crt
</VirtualHost>