无法在露天上传大于10 Ko的文件



今天,我在我的Alfresco上看到了非常奇怪的事情:我无法导入大于10 Ko的存储库文件。
我必须说我最近安装了一个SSL证书,以便用户可以使用HTTPS访问Alfresco (Apache模块mod_proxy_ajp被激活)。
证书安装是否对该限制有潜在影响?有人在Alfresco/Apache/SSL配置上遇到过这种问题吗?

任何帮助都将是非常感激的。

编辑:我为Alfresco配置的虚拟主机如下:
<VirtualHost _default_:80>
ServerName xxx
ErrorLog   ${APACHE_LOG_DIR}/alfresco_error.log
CustomLog  ${APACHE_LOG_DIR}/alfresco_access.log combined
RewriteEngine On
RewriteCond   %{HTTPS} off
RewriteRule   (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteCond %{SERVER_NAME} =xxx
RewriteRule ^ https://%{SERVER_NAME}%{REQUEST_URI} [END,NE,R=permanent]
</VirtualHost>
<VirtualHost _default_:443>
ServerName xxx
ErrorLog   ${APACHE_LOG_DIR}/alfresco_error_ssl.log
CustomLog  ${APACHE_LOG_DIR}/alfresco_access_ssl.log combined
# SSL Configuration
SSLEngine on
KeepAlive on
RewriteEngine on
RewriteRule "^/$""/share"[R=302]
LimitRequestFieldSize 65536
ProxyIOBufferSize   65536
ProxyTimeout 300
ProxyPass     /solr4 !
ProxyPass / ajp://127.0.0.1:8010/
ProxyPassReverse / ajp://127.0.0.1:8010/
SSLCertificateFile /etc/letsencrypt/live/xxx/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/xxx/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
</VirtualHost>

对于tomcat端的ajp连接器,maxPostSize"设置?您可以尝试将其设置为"-1"禁用邮件检查。

最新更新