02-26-2013 07:03 AM
<VirtualHost *:80>
Servername docsdev.mydomain.de
RewriteEngine on
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://%{SERVER_NAME}%{REQUEST_URI} [R]
</VirtualHost>
<VirtualHost 172.27.25.4:443>
  ServerName docsdev.mydomain.de
  DocumentRoot /opt/alfresco-4.2.d/tomcat
                                                        
  ProxyRequests Off
  #ProxyPreserveHost On
  SSLEngine on
  SSLCertificateFile /etc/httpd/conf.d/docsdev.mydomain.de.crt
  SSLCertificateKeyFile /etc/httpd/conf.d/docsdev.mydomain.de.key
    
  #ProxyPass /share ajp://127.0.0.1:8009/share
  #ProxyPassReverse /share ajp://127.0.0.1:8009/share
  #ProxyPass /alfresco ajp://127.0.0.1:8009/alfresco
  #ProxyPassReverse /alfresco ajp://127.0.0.1:8009/alfresco
  ProxyPass / ajp://127.0.0.1:8009/
  ProxyPassReverse / ajp://127.0.0.1:8009/
</VirtualHost>
 2013-02-26 12:50:05,267  INFO  [site.servlet.CSRFFilter] [ajp-apr-8009-exec-4] Possible CSRF attack noted when asserting referer header 'https://docsdev.mydomain.de/share/page/'. Request: POST /share/page/dologin
 2013-02-26 12:50:05,270  ERROR [alfresco.web.site] [ajp-apr-8009-exec-4] javax.servlet.ServletException: Possible CSRF attack noted when asserting referer header 'https://docsdev.mydomain.de/share/page/'. Request: POST /share/page/dologin 02-26-2013 09:48 AM
<!– Certain Share POST requests does NOT require a token –>
         <rule>
            <request>
               <method>POST</method>
               <path>^/page/dologin.*|^\/page/site\/[^\/]+\/start-workflow|^\/page/start-workflow</path>
            </request>
            <action name="assertReferer">
               <param name="always">false</param>
            </action>
            <action name="assertOrigin">
               <param name="always">false</param>
            </action>
         </rule>
02-26-2013 11:40 AM
02-26-2013 02:49 PM
<VirtualHost 172.27.25.4:80>
Servername docsdev.mydomain.de
DocumentRoot /opt/alfresco-4.2.d/tomcat
                                                        
  ProxyRequests Off
  ProxyPreserveHost On
ProxyPass / ajp://docsdev.mydomain.de:8009/
ProxyPassReverse / ajp://docsdev.mydomain.de:8009/
</VirtualHost>
02-26-2013 06:10 PM
02-28-2013 10:03 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.