<?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>topic How to change port number in WEBUI? in Nuxeo Forum</title>
    <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319024#M6025</link>
    <description>&lt;P&gt;In WEBUI the port number 80 is automatically added but we use a SSL secure connection. So non of our documents as accessible via WEBUI. Where can we change it?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://yourhost:80/nuxeo/site/api/v1/repo/default/id/20f5b38b-da99-427d-af96-200f822e8f63/@preview/" target="test_blank"&gt;https://yourhost:80/nuxeo/site/api/v1/repo/default/id/20f5b38b-da99-427d-af96-200f822e8f63/@preview/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 31 Jan 2017 16:10:29 GMT</pubDate>
    <dc:creator>Carsten_Zaddach</dc:creator>
    <dc:date>2017-01-31T16:10:29Z</dc:date>
    <item>
      <title>How to change port number in WEBUI?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319024#M6025</link>
      <description>&lt;P&gt;In WEBUI the port number 80 is automatically added but we use a SSL secure connection. So non of our documents as accessible via WEBUI. Where can we change it?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://yourhost:80/nuxeo/site/api/v1/repo/default/id/20f5b38b-da99-427d-af96-200f822e8f63/@preview/" target="test_blank"&gt;https://yourhost:80/nuxeo/site/api/v1/repo/default/id/20f5b38b-da99-427d-af96-200f822e8f63/@preview/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 16:10:29 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319024#M6025</guid>
      <dc:creator>Carsten_Zaddach</dc:creator>
      <dc:date>2017-01-31T16:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to change port number in WEBUI?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319025#M6026</link>
      <description>&lt;P&gt;What is your setup? Are you using Apache httpd as reverse proxy in the front or Tomcat/JBoss only?&lt;/P&gt;
&lt;P&gt;I have Nuxeo running inside a Docker container, where Tomcat runs on port 8080 and the container port exposed to the host machine is 32769, but accessing it via my host machine on port 80 where I have it configured as reverse proxy. I can access the web UI without problems. Need to know your environment configuration.&lt;/P&gt;
&lt;P&gt;This is my rewrite configuration: &lt;A href="http://pastebin.com/6fFqq04b" target="test_blank"&gt;http://pastebin.com/6fFqq04b&lt;/A&gt; in Apache.&lt;/P&gt;
&lt;P&gt;Did you follow this &lt;A href="https://doc.nuxeo.com/nxdoc/http-and-https-reverse-proxy-configuration/" target="test_blank"&gt;https://doc.nuxeo.com/nxdoc/http-and-https-reverse-proxy-configuration/&lt;/A&gt; ?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Feb 2017 11:29:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319025#M6026</guid>
      <dc:creator>mathias_lin</dc:creator>
      <dc:date>2017-02-01T11:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to change port number in WEBUI?</title>
      <link>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319026#M6027</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I'm facing the same issue when trying to get access to my HTTPS url (ged.mydomain.com), I'm redirected to &lt;A href="https://ged.mydomain.com:80/nuxeo/ui/" target="test_blank"&gt;https://ged.mydomain.com:80/nuxeo/ui/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I'm using a docker container (mapping 58080:8080) on a Synology NAS. Synology use nginx as default reverse-proxy server. The configuration file is the following :&lt;/P&gt;
&lt;P&gt;server {
listen 443 ssl;
listen [::]:443 ssl;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;server_name ged.mydomain.com;

ssl_certificate /usr/syno/etc/certificate/ReverseProxy/.../fullchain.pem;

ssl_certificate_key /usr/syno/etc/certificate/ReverseProxy/.../privkey.pem;

location / {
    proxy_set_header        Host                $http_host;
    proxy_set_header        X-Real-IP           $remote_addr;
    proxy_set_header        X-Forwarded-For     $proxy_add_x_forwarded_for;
    proxy_set_header        X-Forwarded-Proto   $scheme;
    proxy_intercept_errors  on;
    proxy_http_version      1.1;

    proxy_pass &lt;A href="http://localhost:58080" target="test_blank"&gt;http://localhost:58080&lt;/A&gt;;

}
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;Do I need to change something on the nginx side (hoppefully not since tweaking the Synology nginx is not that easy) or is it something that I can change in the Nuxeo parameters?&lt;/P&gt;
&lt;P&gt;Thanks in advance for any help/&lt;/P&gt;
&lt;P&gt;Frédéric&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 10:55:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/nuxeo-forum/how-to-change-port-number-in-webui/m-p/319026#M6027</guid>
      <dc:creator>Frederic_Bottin</dc:creator>
      <dc:date>2018-02-14T10:55:01Z</dc:date>
    </item>
  </channel>
</rss>

