Advertisement
Guest User

Untitled

a guest
Sep 19th, 2014
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. location / {
  2. rewrite ^(.*) https://$host$1 permanent;
  3. try_files $uri $uri/ =404;
  4. }
  5.  
  6. Customer John: www.domain.com/John
  7. Customer Ada: www.domain.com/Ada
  8. etc...
  9.  
  10. location ^~ /Mole/ {
  11. try_files $uri $uri/ =404;
  12. }
  13.  
  14. location / {
  15. rewrite ^(.*) https://$host$1 permanent;
  16. try_files $uri $uri/ =404;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement