Hello Jared,

I had the same problem.

It was due to my nginx SSL conf  (sites-enables config), i removed the red part.

Works fine for me after this update with Safari, Chrome or Firefox.

I give you an extract of my config.

Hope this help :-)

Regards,
Pascal


nginx@reverse:~# vi /etc/nginx/sites-enabled/yoursite.com

server {

listen 443;

server_name yoursite.com;
ssl_certificate           /etc/nginx/certificats/Yoursite.crt;
ssl_certificate_key       /etc/nginx/certificats/Yoursite.key;

ssl_dhparam /etc/nginx/certificats/dhparam.pem;
ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;
ssl_protocols TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers AES256+EECDH:AES256+EDH:!aNULL;
ssl_stapling on;
ssl_stapling_verify on;

#Remove for xwiki###add_header Strict-Transport-Security "max-age=31536000; 
includeSubdomains";
#Remove for xwiki###add_header X-Frame-Options DENY;
#Remove for xwiki###add_header X-Content-Type-Options nosniff;


charset utf-8;
location ~* ^/xwiki/bin/skin/(.*)\.(jpg|jpeg|gif|png|ico)$
        {
         access_log off;
         rewrite ^/xwiki/bin/skin/(.*) /xwiki/$1 permanent;
         expires max;
        }
ssl on;
access_log            /var/log/nginx/access.log;

location ^~ /xwiki {
# If path starts with /xwiki - then redirect to backend: XWiki application in 
Tomcat
proxy_pass http://10.0.1.XX:8080/xwiki;

}
     


> Le 27 juil. 2016 à 16:56, simmsj <sim...@mac.com> a écrit :
> 
> I installed the CKEditor on my 8.1 installation and it worked the first time
> I tried to edit a page, but after that I get the same spinning sprocket that
> I do with the default 8.1 WYSIWYG editor over HTTPS using the Nginx reverse
> proxy. All editors work when going directly to Tomcat over HTTP. They also
> work using Nginx to proxy just HTTP traffic instead of HTTPS.
> 
> I also tried setting xwiki.url.protocol=https in xwiki.cfg based on one of
> the comments from Sergiu Dumitriu in XWIKI-5771 but that didn't help either.
> 
> Based on the Tomcat installation instructions, I made the following changes
> to my \etc\tomcat\server.xml:
> 
> <Connector port="8080" protocol="HTTP/1.1"
>                       connectionTimeout="20000"
>                       URIEncoding="UTF-8"
>                       redirectPort="8443" 
>                       secure="true"                    # Added value
>                       scheme="https" />            # Added value
>                                       
> <Valve className="org.apache.catalina.valves.RemoteIpValve" 
>           remoteIpHeader="x-forwarded-for"
> protocolHeader="x-forwarded-proto" />
> 
> Any other thoughts?
> 
> Thanks,
> Jared
> 
> 
> 
> 
> --
> View this message in context: 
> http://xwiki.475771.n2.nabble.com/WYSIWYG-Editor-Not-Working-with-Nginx-https-reverse-proxy-tp7600471p7600489.html
> Sent from the XWiki- Users mailing list archive at Nabble.com.
> _______________________________________________
> users mailing list
> users@xwiki.org
> http://lists.xwiki.org/mailman/listinfo/users

_______________________________________________
users mailing list
users@xwiki.org
http://lists.xwiki.org/mailman/listinfo/users

Reply via email to