Menu

Apache & Domain

Lars
2015-01-28
2015-12-08
  • Lars

    Lars - 2015-01-28

    Hi,

    how can I configure it that libreplan is accessible via a domain.
    For example http://www.domain.com/libreplan
    I have an apache server an debian and over the IP I can call it over localhost.

    best greetings Lars

     
  • Mantas

    Mantas - 2015-12-08

    i've used apaches mod_proxy module. On ubuntu to enable module, i did command:
    a2enmod proxy

    edited /etc/apache2/sites-enabled/000-default.conf
    added

    <VirtualHost <hostname="">:80>
    ServerName <hostname>
    ServerAdmin <email>
    ErrorLog ${APACHE_LOG_DIR}/libreplan-error.log
    CustomLog ${APACHE_LOG_DIR}/libreplan-access.log combined
    ProxyPass / http://<hostname where="" actually="" libreplan="" is="">:8080/libreplan_1.4.1
    </VirtualHost>

    and modified old entry VirtualHost to have an ip as hostname and port 80 (so that direct access would display apache, not tomcat).

    Mantas

     

Log in to post a comment.