Management interface

  1. Stop all Dispatcher Paragon services.

  2. Go to <DispatcherParagon_DIR>\Management\tomcat\conf

  3. Open the file server.xml with a text editor (Notepad++ for example).

  4. Find the following xml record:

    <... port="80" ... redirectPort="443".../>
  5. Change the port to the number expected for non-encrypted connection.

  6. Change the redirectPort to number expected for encrypted connection.

  7. Start Dispatcher Paragon Management Service.

  8. Go to Management interface > System > Configuration > Expert options

  9. Search for two following parameters and change the values of the parameters according to ports set above:

    • webServerPort

    • webServerPortHTTPS

  10. Restart Dispatcher Paragon Management Service.

  11. Start all Dispatcher Paragon services.

  12. Repeat steps above on all cluster members.

End-user interface

  1. Stop Dispatcher Paragon End User Interface service.

  2. Go to <DispatcherParagon_DIR>\SPOC\EUI\conf

  3. Open the file server.xml with a text editor (Notepad++ for example).

  4. Find the following xml record:

    <... port="9090" ... redirectPort="9443".../>
  5. Change the port to the number expected for non-encrypted connection.

  6. Change the redirectPort to number expected for encrypted connection.

  7. Start Dispatcher Paragon End User Interface service.

  8. Repeat steps for all servers with end-user interface (it is available on both non-dedicated management servers and site servers).

Make end-user interface accessible on https port (443) instead of the management interface 

This is special nontrivial configuration. By default, end-user interface always expects /end-user/ui in the url after the port number.

  1. Stop services Dispatcher Paragon Management Service and Dispatcher Paragon End User Interface

  2. Replace the redirectPort in server.xml files of MNGMT and EUI as described above (the 443 and 9443 ports can be swapped)

  3. In <DispatcherParagon_DIR>\SPOC\EUI\conf\server.xml replace the <Host...>...<Host/> section with these lines:

    <Host appBase="webapps" autoDeploy="true" name="localhost" unpackWARs="true">
    <Valve className="org.apache.catalina.valves.rewrite.RewriteValve" />
    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs" pattern="%h %l %u %t &quot;%r&quot; %s %b" prefix="localhost_access" suffix=".log"/>
    </Host>
  4. Create the ROOT folder (case sensitive) in this path:
    <DispatcherParagon_DIR>\SPOC\EUI\webapps\ROOT

  5. Create this file:
    <DispatcherParagon_DIR>\SPOC\EUI\conf\Catalina\localhost\rewrite.config
    With below content (just replace <IP_ADDRESS> with real value):

    RewriteCond %{REQUEST_URI} ^/$
    RewriteCond %{HTTPS} on
    RewriteRule ^.$ https://<IP_ADDRESS>:443/end-user/ui [NC,R,L]
  6. Start servcices Dispatcher Paragon Management Service and Dispatcher Paragon End User Interface.

Payment System

  1. Stop Dispatcher Paragon Payment System service.

  2. Go to <DispatcherParagon_DIR>\YPS\conf

  3. Open the file server.xml with a text editor (Notepad++ for example).

  4. Find the following xml record:        

    <... port="8080" ... redirectPort="8443".../>
  5. Change the port to the number expected for non-encrypted connection.

  6. Change the redirectPort to number expected for encrypted connection.

  7. Start Dispatcher Paragon Payment System service.