Advertisement
Guest User

Untitled

a guest
May 7th, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. server {
  2. listen 80;
  3.  
  4. index index.html
  5. auth_basic "User: (username) Password: (password)";
  6. auth_basic_user_file htpasswd;
  7. location / {
  8. proxy_pass http://localhost:8080;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement