<?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 Re: Configuring SSL Alfresco in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104852#M29707</link>
    <description>&lt;P&gt;What did not work? What are the issues exactly? Without any details, the situation is too vague to say "yeah, I have seen this". And no, I have not seen that - if the documentation is followed properly with full understanding of what needs to be done, and without skipping anything, it should work.&lt;/P&gt;</description>
    <pubDate>Wed, 23 Oct 2019 20:26:58 GMT</pubDate>
    <dc:creator>afaust</dc:creator>
    <dc:date>2019-10-23T20:26:58Z</dc:date>
    <item>
      <title>Configuring SSL Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104851#M29706</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;I followed the website documentation below:&lt;BR /&gt;&lt;A href="https://docs.alfresco.com/5.1/tasks/configure-ssl-prod.html" target="_blank" rel="noopener nofollow noreferrer"&gt;https://docs.alfresco.com/5.1/tasks/configure-ssl-prod.html&lt;/A&gt;&lt;BR /&gt;And it didn't work to enable https.&lt;BR /&gt;Have you come across this situation?&lt;BR /&gt;With best regards,&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 20:07:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104851#M29706</guid>
      <dc:creator>jbrasil</dc:creator>
      <dc:date>2019-10-23T20:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SSL Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104852#M29707</link>
      <description>&lt;P&gt;What did not work? What are the issues exactly? Without any details, the situation is too vague to say "yeah, I have seen this". And no, I have not seen that - if the documentation is followed properly with full understanding of what needs to be done, and without skipping anything, it should work.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 20:26:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104852#M29707</guid>
      <dc:creator>afaust</dc:creator>
      <dc:date>2019-10-23T20:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Configuring SSL Alfresco</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104853#M29708</link>
      <description>&lt;P&gt;Hi afaust,&lt;BR /&gt;Follow the settings nginx:&lt;/P&gt;&lt;P&gt;The settings in alfresco-global.properties I made as per documentation.&lt;BR /&gt;Something is missing?&lt;/P&gt;&lt;P&gt;/etc/nginx/conf.d&lt;BR /&gt;alfresco.conf&lt;/P&gt;&lt;P&gt;cat alfresco.conf | more&lt;/P&gt;&lt;P&gt;# Set proxy cache path&lt;BR /&gt;proxy_cache_path /var/cache/nginx/alfresco levels=1 keys_zone=alfrescocache:256m max_size=512m inactive=1440m;&lt;/P&gt;&lt;P&gt;# Alfresco Repository Tomcat instance&lt;BR /&gt;upstream alfresco {&lt;BR /&gt;server localhost:8080;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;# Share Web client Tomcat instance&lt;BR /&gt;upstream share {&lt;BR /&gt;server localhost:8080;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;# Default server config. Update server name.&lt;BR /&gt;server {&lt;BR /&gt;listen 80 ;&lt;BR /&gt;listen [::]:80 ;&lt;BR /&gt;proxy_redirect &lt;A href="http://206.189.234.255" target="_blank" rel="nofollow noopener noreferrer"&gt;http://206.189.234.255&lt;/A&gt; &lt;A href="https://206.189.234.255" target="_blank" rel="nofollow noopener noreferrer"&gt;https://206.189.234.255&lt;/A&gt;;&lt;BR /&gt;server_name 206.189.234.255;&lt;BR /&gt;rewrite ^/$ /share;&lt;/P&gt;&lt;P&gt;root /opt/alfresco/www;&lt;BR /&gt;index index.html index.htm;&lt;/P&gt;&lt;P&gt;# Redirect root requests to Share. Do not do this if you use AOS&lt;BR /&gt;# rewrite ^/$ /share;&lt;/P&gt;&lt;P&gt;# redirect server error pages to the static page /50x.html&lt;BR /&gt;#&lt;BR /&gt;error_page 502 503 504 /maintenance.html;&lt;BR /&gt;location = /maintenance.html {&lt;BR /&gt;root /opt/alfresco/www;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;# Access to old Alfresco web client. Remove this location if not needed.&lt;BR /&gt;location /alfresco {&lt;/P&gt;&lt;P&gt;# Allow for large file uploads&lt;BR /&gt;client_max_body_size 0;&lt;/P&gt;&lt;P&gt;# Proxy all the requests to Tomcat&lt;BR /&gt;proxy_http_version 1.1;&lt;BR /&gt;#proxy_buffering off;&lt;BR /&gt;proxy_pass http://alfresco;&lt;/P&gt;&lt;P&gt;proxy_set_header Proxy "";&lt;BR /&gt;proxy_set_header Host $http_host;&lt;BR /&gt;proxy_set_header X-Real-IP $remote_addr;&lt;BR /&gt;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;&lt;BR /&gt;proxy_set_header X-Forwarded-Host $http_host;&lt;BR /&gt;proxy_set_header X-Forwarded-Server $host;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;location /share/proxy/alfresco {&lt;BR /&gt;# This section is for allowing to rewrite 50x response to 401 on Ajax req.&lt;BR /&gt;# This forces Share to reload page, and thus display maintenance page&lt;/P&gt;&lt;P&gt;# Allow for large file uploads&lt;BR /&gt;client_max_body_size 0;&lt;/P&gt;&lt;P&gt;# Proxy all the requests to Tomcat&lt;BR /&gt;proxy_http_version 1.1;&lt;BR /&gt;#proxy_buffering off;&lt;BR /&gt;proxy_pass http://share;&lt;/P&gt;&lt;P&gt;proxy_set_header Proxy "";&lt;BR /&gt;proxy_set_header Host $http_host;&lt;BR /&gt;proxy_set_header X-Real-IP $remote_addr;&lt;BR /&gt;proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;&lt;BR /&gt;proxy_set_header X-Forwarded-Host $http_host;&lt;BR /&gt;proxy_set_header X-Forwarded-Server $host;&lt;BR /&gt;proxy_intercept_errors on;&lt;BR /&gt;error_page 502 503 504 =401 /maintenance.html;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;location /share/res/ {&lt;/P&gt;&lt;P&gt;# Proxy all the requests to Tomcat&lt;BR /&gt;proxy_http_version 1.1;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Oct 2019 20:39:46 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/configuring-ssl-alfresco/m-p/104853#M29708</guid>
      <dc:creator>jbrasil</dc:creator>
      <dc:date>2019-10-23T20:39:46Z</dc:date>
    </item>
  </channel>
</rss>

