deployment:apps:redmine

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
deployment:apps:redmine [2026/02/06 13:34] – [Install dependency] ilyasadeployment:apps:redmine [2026/02/07 09:17] (current) – [Configure Webserver (apache2)] ilyasa
Line 79: Line 79:
 //Notes : ganti ''[email protected]'' dengan akun gmail yang aktif dan''sandi-aplikasi'' dengan sandi yang di generate oleh gmail// //Notes : ganti ''[email protected]'' dengan akun gmail yang aktif dan''sandi-aplikasi'' dengan sandi yang di generate oleh gmail//
  
 +==== Configure Webserver (apache2) ====
 +<code bash>
 +nano /etc/apache2/sites-available/redmine.conf
 +</code>
  
 +<code conf redmine.conf>
 +<VirtualHost *:80>
 +    ServerName redmine.example.com
  
 +    DocumentRoot /var/www/redmine/public
 +
 +    <Directory /var/www/redmine/public>
 +        Require all granted
 +        AllowOverride all
 +        Options -MultiViews
 +    </Directory>
 +
 +    RailsEnv production
 +    PassengerEnabled on
 +
 +    ErrorLog ${APACHE_LOG_DIR}/redmine_error.log
 +    CustomLog ${APACHE_LOG_DIR}/redmine_access.log combined
 +</VirtualHost
 +</code>
 +<code bash>
 +a2ensite redmine.conf
 +systemctl reload apache2
 +</code>
 +Tambahkan records dan access url sesuai domain yang di konfigurasi pada webserver http://redmine.example.com
 +{{ :deployment:apps:redmine.png?nolink |}}
  
  • deployment/apps/redmine.1770359677.txt.gz
  • Last modified: 2026/02/06 13:34
  • by ilyasa