<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Configuration required on self hosted SN APP server to allow HTTPS in GRC forum</title>
    <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313780#M6913</link>
    <description>&lt;P&gt;I went through the same thought process...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;In the end, your SSL termination point should be at the load balancer. &amp;nbsp; Not the application server(s).&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;That way you can examine headers and reverse proxy etc.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Suggest you go with that.&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 06 Dec 2017 21:58:55 GMT</pubDate>
    <dc:creator>swong212</dc:creator>
    <dc:date>2017-12-06T21:58:55Z</dc:date>
    <item>
      <title>Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313772#M6905</link>
      <description>&lt;P&gt;This is for an &amp;nbsp;interface with SNOW appliance which uses HTTPS only. &amp;nbsp;SN instance is &amp;nbsp;self hosted Eureka instance on Redhat. SNOW interface section has been deployed, just require details on how to configure the SN APP server to use HTTPS. Currently user access is on HTTP. &amp;nbsp;Previously tried configuring glide.properties but no joy with HTTPS access.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2017 15:30:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313772#M6905</guid>
      <dc:creator>bkw</dc:creator>
      <dc:date>2017-08-30T15:30:57Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313773#M6906</link>
      <description>&lt;P&gt;Hi Bill,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;By default the ServiceNow app nodes will only be setup for HTTP connections. The reason for this is that it allows the load-balancer (which is a recommended part of the deployment and which handles HTTPS on behalf of the instance) to persist connections without any special configuration.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;We do have a KB article describing how to set the node to allow HTTPS. Unfortunately it's marked internal so I can't give you the whole article, but I've tested on a test instance and these are the necessary steps:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;- created a JKS keystore and generate a self-signed RSA key in it as the HTTPS cert (replace this with importing your existing HTTPS cert if you have a valid one): keytool -genkey -alias tomcat -keyalg RSA -keysize 2048 -validity 365 -keystore /glide/nodes/&amp;lt;instance_port&amp;gt;/conf/&amp;lt;instance&amp;gt;.keystore&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;(set the password on the new keystore file when prompted, keep the password for the generated RSA key pair as the same as the keystore - just press enter)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;- shutdown the node&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;- create the file /glide/nodes/&amp;lt;instance_port&amp;gt;/conf/overrides.d/02-https.properties with these contents (change the last 2 properties to match your setup):&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.main.redirectPort=8443&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.port=8443&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.scheme=https&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.secure=true&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.SSLEnabled=true&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.clientAuth=false&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.sslProtocol=TLS&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.keystoreFile=../conf/&amp;lt;instance&amp;gt;.keystore&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;tomcat.connector.secure.keystorePass=&amp;lt;password&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN&gt;- start the node back up, it should be accessible at &lt;/SPAN&gt;&lt;A title="k-external-small" class="jive-link-external-small" href="https://" rel="nofollow" target="_blank"&gt;https://&lt;/A&gt;&lt;SPAN&gt;&amp;lt;hostname&amp;gt;:8443&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;Let me know how you go with this&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 31 Aug 2017 00:33:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313773#M6906</guid>
      <dc:creator>tim210</dc:creator>
      <dc:date>2017-08-31T00:33:53Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313774#M6907</link>
      <description>&lt;P&gt;Hello Tim Edward,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I followed all steps, but i wasn't able to open in HTTPS &lt;A href="https://10.xx.xx.xx:8443/" title="https://10.xx.xx.xx:8443/"&gt;https://10.xx.xx.xx:8443/&lt;/A&gt; &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;PS:my service-now portal is 10.xx.xx.xx:16000 , what should i try &amp;nbsp; ?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 01 Nov 2017 13:16:35 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313774#M6907</guid>
      <dc:creator>mohamedg_almosl</dc:creator>
      <dc:date>2017-11-01T13:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313775#M6908</link>
      <description>&lt;P&gt;Hi Mohamed,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;What's the error you get in the browser when going to &lt;A title="" _jive_internal="true" href="https://10.xx.xx.xx:8443/" rel="nofollow" target="_blank"&gt;https://10.xx.xx.xx:8443&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Can you confirm that Tomcat is listening on that port? (On a Linux server run &lt;EM&gt;netstat -nlp | grep tomcat)&lt;/EM&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Nov 2017 01:08:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313775#M6908</guid>
      <dc:creator>tim210</dc:creator>
      <dc:date>2017-11-02T01:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313776#M6909</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I tried the netstat command , but nothing is listening&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Kindly check the below output and advice (i'm not a Linux expert)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[root@eecsaruh2hor285 ~]# netstat -nlp |grep tomcat&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[root@eecsaruh2hor285 ~]#&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[root@eecsaruh2hor285 ~]# service tomcat status&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Redirecting to /bin/systemctl status tomcat.service&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;â—� tomcat.service - Apache Tomcat Web Application Container&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; Loaded: loaded (/usr/lib/systemd/system/tomcat.service; disabled; vendor preset: disabled)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; Active: inactive (dead)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: at java.lang.Thread.run(Thread.java:748)&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: Nov 01, 2017 4:09:37 PM org.apache.coyote.AbstractProtocol stop&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: INFO: Stopping ProtocolHandler ["http-bio-8080"]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: Nov 01, 2017 4:09:37 PM org.apache.coyote.AbstractProtocol destroy&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: INFO: Destroying ProtocolHandler ["http-bio-8080"]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: Nov 01, 2017 4:09:37 PM org.apache.coyote.AbstractProtocol stop&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: INFO: Stopping ProtocolHandler ["ajp-bio-8009"]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: Nov 01, 2017 4:09:37 PM org.apache.coyote.AbstractProtocol destroy&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Nov 01 16:09:37 eecsaruh2hor285 server[5080]: INFO: Destroying ProtocolHandler ["ajp-bio-8009"]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[root@eecsaruh2hor285 ~]# ps aux |grep tomcat&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;service+ &amp;nbsp; 7347 11.2 &amp;nbsp; 3.7 2853092 1217644 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl &amp;nbsp; &amp;nbsp; Nov01 160:50 /glide/java/bin/java -Dglide.orbit.bootstrap.class.path=../lib/orbit:../lib/contrib -Dglide.home.dist=.. -Djava.util.logging.config.file=../conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=../lib/endorsed -Djava.io.tmpdir=../tmp -Dfile.encoding=UTF-8 -Dglide.node.id.dir=app1_16000 -Dorg.apache.catalina.connector.RECYCLE_FACADES=true -XX:OnOutOfMemoryError=../scripts/kill_jvm_only.sh -server -XX:+UseConcMarkSweepGC -XX:GCTimeRatio=5 -Xms128m -Xmx2048m -XX:MaxPermSize=256m -Djava.library.path=../lib/jsw -classpath ../lib/jsw/wrapper.jar:../lib/jsw/orbit-bootstrap-7.2.0.jar:../lib/jsw/orbit-bootstrap-commons-lang-7.2.0.jar:../lib/jsw/tomcat-juli-7.0.64.jar -Dwrapper.key=Cv01OFSKFnCkhFWk -Dwrapper.port=32001 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=7316 -Dwrapper.version=3.2.3.SNC.1 -Dwrapper.native_library=wrapper -Dwrapper.ignore_signals=TRUE -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=2 com.glide.orbit.bootstrap.jsw.GlideOrbitJSW&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;root &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 12777 &amp;nbsp; 0.0 &amp;nbsp; 0.0 112664 &amp;nbsp; &amp;nbsp; 980 pts/1 &amp;nbsp; &amp;nbsp; &amp;nbsp; S+ &amp;nbsp; &amp;nbsp; 16:24 0:00 grep --color=auto tomcat&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;service+ 26182 &amp;nbsp; 2.9 &amp;nbsp; 3.5 2817392 1180108 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl &amp;nbsp; &amp;nbsp; Sep27 1547:38 /glide/java/bin/java -Dglide.orbit.bootstrap.class.path=../lib/orbit:../lib/contrib -Dglide.home.dist=.. -Djava.util.logging.config.file=../conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=../lib/endorsed -Djava.io.tmpdir=../tmp -Dfile.encoding=UTF-8 -Dglide.node.id.dir=app2_16001 -Dorg.apache.catalina.connector.RECYCLE_FACADES=true -XX:OnOutOfMemoryError=../scripts/kill_jvm_only.sh -server -XX:+UseConcMarkSweepGC -XX:GCTimeRatio=5 -Xms128m -Xmx2048m -XX:MaxPermSize=256m -Djava.library.path=../lib/jsw -classpath ../lib/jsw/wrapper.jar:../lib/jsw/orbit-bootstrap-7.2.0.jar:../lib/jsw/orbit-bootstrap-commons-lang-7.2.0.jar:../lib/jsw/tomcat-juli-7.0.64.jar -Dwrapper.key=HtiAvPmmPCdMilSV -Dwrapper.port=32002 -Dwrapper.jvm.port.min=31000 -Dwrapper.jvm.port.max=31999 -Dwrapper.pid=26157 -Dwrapper.version=3.2.3.SNC.1 -Dwrapper.native_library=wrapper -Dwrapper.ignore_signals=TRUE -Dwrapper.service=TRUE -Dwrapper.cpu.timeout=10 -Dwrapper.jvmid=2 com.glide.orbit.bootstrap.jsw.GlideOrbitJSW&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 30829 &amp;nbsp; 0.0 &amp;nbsp; 0.6 10948692 224284 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl &amp;nbsp; &amp;nbsp; Oct09 &amp;nbsp; 25:28 /glide/avp/java/bin/java -Djava.util.logging.config.file=/glide/avp/tomcat/conf/logging.properties -Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager -Djava.endorsed.dirs=/glide/avp/tomcat/endorsed -classpath /glide/avp/tomcat/bin/bootstrap.jar -Dcatalina.base=/glide/avp/tomcat -Dcatalina.home=/glide/avp/tomcat -Djava.io.tmpdir=/glide/avp/tomcat/temp org.apache.catalina.startup.Bootstrap start&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 30862 &amp;nbsp; 0.0 &amp;nbsp; 0.1 2099628 45524 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl Oct09 &amp;nbsp; &amp;nbsp; 4:54 /glide/avp/bin/phantomjs /glide/avp/tomcat/temp/export2908334316466610516/phantomjs/highcharts-convert.js -host 127.0.0.1 -port 7777&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 30877 &amp;nbsp; 0.0 &amp;nbsp; 0.1 2099584 43148 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl Oct09 &amp;nbsp; &amp;nbsp; 4:51 /glide/avp/bin/phantomjs /glide/avp/tomcat/temp/export2908334316466610516/phantomjs/highcharts-convert.js -host 127.0.0.1 -port 7778&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 30892 &amp;nbsp; 0.0 &amp;nbsp; 0.1 2099516 45432 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl &amp;nbsp; &amp;nbsp; Oct09 4:39 /glide/avp/bin/phantomjs /glide/avp/tomcat/temp/export2908334316466610516/phantomjs/highcharts-convert.js -host 127.0.0.1 -port 7779&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 30924 &amp;nbsp; 0.0 &amp;nbsp; 0.1 2099884 41460 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl Oct09 &amp;nbsp; &amp;nbsp; 4:40 /glide/avp/bin/phantomjs /glide/avp/tomcat/temp/export2908334316466610516/phantomjs/highcharts-convert.js -host 127.0.0.1 -port 7781&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;avp &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 31024 &amp;nbsp; 0.0 &amp;nbsp; 0.0 2098580 31808 ? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Sl Oct09 &amp;nbsp; &amp;nbsp; 5:11 /glide/avp/bin/phantomjs /glide/avp/tomcat/temp/export2908334316466610516/phantomjs/highcharts-convert.js -host 127.0.0.1 -port 77&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Nov 2017 13:40:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313776#M6909</guid>
      <dc:creator>mohamedg_almosl</dc:creator>
      <dc:date>2017-11-02T13:40:55Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313777#M6910</link>
      <description>&lt;P&gt;Can you try restarting the ServiceNow node and then run this instead:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;netstat -nlp | grep 8443&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 04 Nov 2017 23:44:45 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313777#M6910</guid>
      <dc:creator>tim210</dc:creator>
      <dc:date>2017-11-04T23:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313778#M6911</link>
      <description>&lt;P&gt;Hi Tim,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;i ran the command ,but no output. any more ideas?&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;[root@eecsaruh2hor285 ~]# netstat -nlp |grep 8443&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;[root@eecsaruh2hor285 ~]#&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 05 Nov 2017 09:11:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313778#M6911</guid>
      <dc:creator>mohamedg_almosl</dc:creator>
      <dc:date>2017-11-05T09:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313779#M6912</link>
      <description>&lt;P&gt;This is difficult to debug through this forum, are you able to open an incident in HI for this instance? Then the relevant Customer Support team would be able to run a Webex with you and help with the setup.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Nov 2017 06:15:24 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313779#M6912</guid>
      <dc:creator>tim210</dc:creator>
      <dc:date>2017-11-06T06:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: Configuration required on self hosted SN APP server to allow HTTPS</title>
      <link>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313780#M6913</link>
      <description>&lt;P&gt;I went through the same thought process...&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;In the end, your SSL termination point should be at the load balancer. &amp;nbsp; Not the application server(s).&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;That way you can examine headers and reverse proxy etc.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Suggest you go with that.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Dec 2017 21:58:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/grc-forum/configuration-required-on-self-hosted-sn-app-server-to-allow/m-p/1313780#M6913</guid>
      <dc:creator>swong212</dc:creator>
      <dc:date>2017-12-06T21:58:55Z</dc:date>
    </item>
  </channel>
</rss>

