Advertisement
Guest User

Untitled

a guest
Oct 5th, 2011
3,500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. location / {
  2. proxy_pass http://10.0.0.34:8080;
  3. }
  4.  
  5. location /externals {
  6. alias /var/www/me2di/externals;
  7. }
  8.  
  9. location /public {
  10. alias /var/www/me2di/public;
  11. }
  12.  
  13. location /temporary {
  14. alias /var/www/me2di/temporary;
  15. }
  16.  
  17. =====>
  18.  
  19. location / {
  20. proxy_pass http://10.0.0.34:8080;
  21. }
  22.  
  23. location /(externals|public|temporary) {
  24. root /var/www/me2di;
  25. }
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement