Atlassian Jira unter Plesk 11.5 ohne Port Angabe
24. Juni 2014

Um Jira unter Plesk 11.5 zu nutzen, muss man ein Proxy Modul unter Apache nutzen.
Installieren:
apt-get install libapache2-mod-proxy-html
Aktivieren:
a2enmod proxy_http
Neustarten:
service apache2 restart
Vhosts.conf anlegen:
vim /var/www/vhosts/system/DOMAIN/conf/vhost.conf
Mit folgendem Inhalt:
<proxy *>
Order deny,allow
Allow from all
</proxy>
ProxyRequests Off
ProxyPreserveHost On
ProxyPass / http://deinedomain.tld:8080/
ProxyPassReverse / http://deinedomain.tld:8080/
Nun noch neukonfigurieren mit dem Webmanager oder dem HTTP Manager:
/usr/local/psa/admin/sbin/websrvmng --reconfigure-vhost --vhost-name=deinedomain.tld
/usr/local/psa/admin/bin/httpdmng --reconfigure-domain deinedomain.tld
Neustarten und kontrollieren auf funktionialität
/etc/init.d/apache2 restart
Das klappt super auch mit Subdomains, dazu müsst ihr vor die Domains, einfach nur die Subdomain angeben.Weitere Beiträge
Alle BeiträgeKeine weiteren Beiträge gefunden.
Alle Beiträge ansehen
Kommentare
Kommentare werden geladen...