<html><body><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt">The workplace is working generally except the popup boxes(gallery, vfs file paths, in admin... the Group box, etc ...) within the workspace are throwing errors.<br><br>for example if I click the box in User Administration to create a new Group and then go to select a Parent Group, I get vfs resource not found with the requisite stack trace.  <br><br>Upon further investigation in the code I see that a js function is called:<br><br>"javascript:openGroupWin('/opencms/system/workplace/commons/group_selection.jsp','EDITOR',  'parentGroup.0', document, null, null, '');"<br><br>Clearly the problem is that the /opencms/ on the front end is not getting stripped out when the popup happens.  Sure enough when I remove the opencms and do just mydomain.com/system...(path from above), the correct working workplace page is
 rendered.  This is what's happening in every other case so the workplace is quite functional.<br><br>So... can anybody say why nginx is handling this everywhere else in the workplace but not for these popups.  Has anyone seen this before?  My nginx settings are below.<br><br>server {<br>    listen 83;<br>    #server_name mydomain.com;<br>    listen [::]:83 default_server ipv6only=on;<br>    root /usr/share/tomcat7/webapps/ROOT/;<br>    index index.html index.htm index.jsp;<br><br>    # Make site accessible from http://localhost/<br>    server_name localhost;<br><br>    location / {    <br>        proxy_redirect          off;<br>              
 proxy_pass              http://127.0.0.1:8081/opencms/;<br>            proxy_set_header        X-Real-IP $remote_addr;<br>            proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;<br>            proxy_set_header        Host $http_host; <br>    }<br><br>    location /export {<br>        try_files $uri /handle404?exporturi=$uri&$args;<br>        expires       24h;<br>        add_header    Cache-Control  private;<br>   
 }<br><br>    location /external {<br>        expires       24h;<br>        add_header    Cache-Control  private;<br>    }<br><br>    location /resources {<br>        expires       24h;<br>        add_header    Cache-Control  private;<br>    }<br>}<br></div></body></html>