Menu

setup pulse application behind httpd web server

2016-03-31
2016-04-01
  • Alexey Korneev

    Alexey Korneev - 2016-03-31

    Hello guys,

    I've made great CMS and I like it very much.

    But I faced with some issues while setuping pulse with web server - apache httpd. Here is my setup:
    1. App server on tomcat6 which running pulse on port 8080
    2. web server - apache httpd which has such setup:

    <VirtualHost *:80>
        ProxyRequests Off
        ProxyPreserveHost on
        ProxyPass / http://192.168.33.111:8080/
        ProxyPassReverse / http://192.168.33.111:8080/
        <Location />
            Order allow,deny
            Allow from all
        </Location>
    </VirtualHost>
    

    192.168.33.111 - is address of tomcat server.
    Issue that I have now: after login I got into Editor Panel, and everywhere on the left I see '4...load failure: undefined'

    It seems that configuration part from pulse.xml:

    <security tls-available="false" secure-port="8443" default-port="8080"
            server-salt="changeMeOnInstall"/>
    

    where port 8080 is hardcoded.

    Is there any way to fix that issue?

    Thank you in advance,
    Alexey

     
  • Thomas Weber

    Thomas Weber - 2016-04-01

    Hey Alexey,
    this can be resolved easily.
    Just change your pulse.xml to:

    <security tls-available="false" secure-port="443" default-port="80"
            server-salt="changeMeOnInstall"/>
    

    The ports given in this configuration are the ports on which the webapp is exposed to the outside world which is port 80 in your case.

    If you still have issues, do not hesitate to ask again.

    Best,
    Thomas

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.