<?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: POST requests 500 - Nginx Kerberos SSO SSL Alfresco 201911/6.2 in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110075#M30839</link>
    <description>&lt;P&gt;Yep I saw that. I can't find any mistakes and we have working conf with SSO with nginx, kerberos, ad on alfresco 2019.01. I don't think only we have a problem, becouse we have same config working 2019.01-ga. Base on clean alfresco. So our .env file now looks like that.&lt;/P&gt;&lt;PRE&gt;# Community
ALFRESCO_CE_TAG=6.1.2-ga
SEARCH_CE_TAG=1.4.0
SHARE_TAG=6.1.0
ACA_TAG=master-latest
POSTGRES_TAG=11.4
API_EXPLORER_TAG=6.0.7-ga
TRANSFORM_ENGINE_TAG=2.1.0
ACTIVEMQ_TAG=5.15.8&lt;/PRE&gt;&lt;P&gt;If we switch config to newest:&lt;/P&gt;&lt;PRE&gt;# Community
ALFRESCO_CE_TAG=6.2.0-ga
SEARCH_CE_TAG=1.4.0
SHARE_TAG=6.2.0
ACA_TAG=master-latest
POSTGRES_TAG=11.4
API_EXPLORER_TAG=6.2.0
TRANSFORM_ENGINE_TAG=2.1.0
ACTIVEMQ_TAG=5.15.8&lt;/PRE&gt;&lt;P&gt;We will have 500 for each post request after login to alfresco. In 2019.01 we don't have this problem. Same configuration only change of .env.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't get me wrong I would love to use 2019.11, but for now we upgraded only to 2019.01 becouse of this (we were upgrading alfresco from 201701-ga).&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jan 2020 09:55:22 GMT</pubDate>
    <dc:creator>mmagowski</dc:creator>
    <dc:date>2020-01-29T09:55:22Z</dc:date>
    <item>
      <title>POST requests 500 - Nginx Kerberos SSO SSL Alfresco 201911/6.2</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110072#M30836</link>
      <description>&lt;P&gt;I probably find a bug in alfresco 2019.11 which stopped us from upgrading to 6.2.&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have problem on clean alfresco base on docker-compose configuration.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Problem exists in: 2019.11 with SSO turn on. All post request in system are rejected and have status 500. When you turn off SSO you can send POST requests, for example upload a file.&lt;/P&gt;&lt;P&gt;Our configuration: 2019.11, nginx, docker-compose, SSO, SSL in nginx, Kerberos, AD.&lt;/P&gt;&lt;P&gt;We handle the issue...by not using the newest alfresco &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://connect.hyland.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt; We don't have any problems with clean alfresco and 201901 with same configuration. We were testing this in simple fashion, just simply changing .env file for docker-compose and docker files. We not changing anything in configuration, only changing version for alfresco repository and alfresco share.&lt;/P&gt;&lt;P&gt;Nginx configuration:&lt;/P&gt;&lt;PRE&gt;worker_processes  1;

events {
    worker_connections  1024;
}

http {
    sendfile on;

    server {
        listen 443 ssl;

        client_max_body_size 0;
  
        set  $allowOriginSite *;
       proxy_pass_request_headers on;
       proxy_pass_header Set-Cookie;
        
        ssl_certificate     /etc/nginx/client.crt;
        ssl_certificate_key /etc/nginx/client.key;
        ssl_ciphers         EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:!RC4:!MD5:!DES;
        ssl_protocols       TLSv1.1 TLSv1.2;
    
        proxy_set_header X-Forwarded-Host $host;
        proxy_set_header X-Forwarded-Server $host;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        large_client_header_buffers  4 32k;

        # External settings, do not remove
        #ENV_ACCESS_LOG
        error_page 497 https://$host:$server_port$request_uri;

        proxy_set_header Host            $host:$server_port;
        proxy_set_header X-Real-IP       $remote_addr;
        proxy_redirect http:// https://;

        # Protect access to SOLR APIs
        location ~ ^(/.*/service/api/solr/.*)$ {return 403;}
        location ~ ^(/.*/s/api/solr/.*)$ {return 403;}
        location ~ ^(/.*/wcservice/api/solr/.*)$ {return 403;}
        location ~ ^(/.*/wcs/api/solr/.*)$ {return 403;}

        location ~ ^(/.*/proxy/alfresco/api/solr/.*)$ {return 403 ;}
        location ~ ^(/.*/-default-/proxy/alfresco/api/.*)$ {return 403;}

        # Alfresco Repository
        location /alfresco/ {
            proxy_pass http://alfresco:8080;
        }

        # SOLR Web Console (Master)
        location /solr/ {
            proxy_pass http://solr6:8983;

            # Basic authentication
            auth_basic "Solr web console";
            auth_basic_user_file /etc/nginx/conf.d/nginx.htpasswd;
        }

        # Alfresco Share Web App
        location /share/ {
            proxy_pass http://share:8080;
        }

        # Alfresco Content App
        location / {
            proxy_pass http://alfresco:8080;
        }
    }
}&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Jan 2020 10:16:32 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110072#M30836</guid>
      <dc:creator>mmagowski</dc:creator>
      <dc:date>2020-01-28T10:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: POST requests 500 - Nginx Kerberos SSO SSL Alfresco 201911/6.2</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110073#M30837</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/77557"&gt;@mmagowski&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Currently investigating this issue. Will update when I have some news.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2020 10:40:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110073#M30837</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-01-28T10:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: POST requests 500 - Nginx Kerberos SSO SSL Alfresco 201911/6.2</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110074#M30838</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://migration33.stage.lithium.com/t5/user/viewprofilepage/user-id/77557"&gt;@mmagowski&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;Have you had a look here&amp;nbsp;&lt;A href="https://docs.alfresco.com/sso/topics/kerberos.html" target="_self" rel="nofollow noopener noreferrer"&gt;https://docs.alfresco.com/sso/topics/kerberos.html&lt;/A&gt;?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know if this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 09:43:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110074#M30838</guid>
      <dc:creator>EddieMay</dc:creator>
      <dc:date>2020-01-29T09:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: POST requests 500 - Nginx Kerberos SSO SSL Alfresco 201911/6.2</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110075#M30839</link>
      <description>&lt;P&gt;Yep I saw that. I can't find any mistakes and we have working conf with SSO with nginx, kerberos, ad on alfresco 2019.01. I don't think only we have a problem, becouse we have same config working 2019.01-ga. Base on clean alfresco. So our .env file now looks like that.&lt;/P&gt;&lt;PRE&gt;# Community
ALFRESCO_CE_TAG=6.1.2-ga
SEARCH_CE_TAG=1.4.0
SHARE_TAG=6.1.0
ACA_TAG=master-latest
POSTGRES_TAG=11.4
API_EXPLORER_TAG=6.0.7-ga
TRANSFORM_ENGINE_TAG=2.1.0
ACTIVEMQ_TAG=5.15.8&lt;/PRE&gt;&lt;P&gt;If we switch config to newest:&lt;/P&gt;&lt;PRE&gt;# Community
ALFRESCO_CE_TAG=6.2.0-ga
SEARCH_CE_TAG=1.4.0
SHARE_TAG=6.2.0
ACA_TAG=master-latest
POSTGRES_TAG=11.4
API_EXPLORER_TAG=6.2.0
TRANSFORM_ENGINE_TAG=2.1.0
ACTIVEMQ_TAG=5.15.8&lt;/PRE&gt;&lt;P&gt;We will have 500 for each post request after login to alfresco. In 2019.01 we don't have this problem. Same configuration only change of .env.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't get me wrong I would love to use 2019.11, but for now we upgraded only to 2019.01 becouse of this (we were upgrading alfresco from 201701-ga).&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 09:55:22 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/post-requests-500-nginx-kerberos-sso-ssl-alfresco-201911-6-2/m-p/110075#M30839</guid>
      <dc:creator>mmagowski</dc:creator>
      <dc:date>2020-01-29T09:55:22Z</dc:date>
    </item>
  </channel>
</rss>

