AOS Config

cancel
Showing results for 
Search instead for 
Did you mean: 
crisdev13
Active Member II

AOS Config

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 forward.png  

 

4 Replies
fedorow
Senior Member II

Re: AOS Config

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

crisdev13
Active Member II

Re: AOS Config

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

crisdev13
Active Member II

Re: AOS Config

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

fedorow
Senior Member II

Re: AOS Config

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;
        }