cancel
Showing results for 
Search instead for 
Did you mean: 

AOS Config

crisdev13
Confirmed Champ
Confirmed Champ

i configuring the aos base on alfresco documentation and  my question is where im gonna forward this location sir thanks  or how to do this part thanks image  

4 REPLIES 4

fedorow
Elite Collaborator
Elite Collaborator

Your reverce proxy must to know where to redirect this url's. So configure your reverce proxy. Whitch revers proxy do you use?

sir it's gonna work when i redirect to http://share:8080?

sir do you have sample configuration of this proxy using nginx? 

fedorow
Elite Collaborator
Elite Collaborator

nginx

        # SharePoint URLs for Office clients
        location  ~ (^/spp|^/_vti_bin/|^/_vti_history/|^/_vti_inf.html$) {
          proxy_pass http://alfresco:8080;

          proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504;
          proxy_redirect off;
          proxy_buffering off;
          proxy_set_header Host            $host;
          proxy_set_header X-Real-IP       $remote_addr;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
          proxy_pass_header Set-Cookie;
        }