nginx 단순 역방향 에이전트 구현

946 단어 nginx
NFS 서버 에서 디 렉 터 리 발표
vi /etc/exports
/opt/xcw 10.11.80.*(rw,sync,no_root_squash) 
service nfs restart

4. 정적 WEB 서버 에 로그 인
mkdir attachment
mount -t nfs 10.11.80.226:/home/attachment /var/www/ku/attachment
mkdir avatar
mount -t nfs 10.11.80.226:/home/avatar /var/www/ku/avatar
mount -t nfs 10.10.70.90:/var/avatar /var/www/ku/90/avatar
mount -t nfs 10.10.70.90:/var/attachment /var/www/ku/90/attachment

6. 주 WEB 서버 에 로그 인하 여 프 록 시 디 렉 터 리 를 되 돌 립 니 다.
   location /attachment/
        {
          proxy_pass http://10.11.80.223/attachment/;
          proxy_set_header Host $host;
        }

   location /ucenter/data/avatar/
        {
          proxy_pass http://10.11.80.223/avatar/;
          proxy_set_header Host $host;
        }

좋은 웹페이지 즐겨찾기