Advertisement
Guest User

Untitled

a guest
Jul 6th, 2015
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. https://User:password@svn.domain.com
  2. https://USER@svn.domain.com
  3. svn://useR:password@svn.domain.com/Repo/Trunk/BIN/
  4. svn://svn.domain.com/Repo/Trunk/BIN/
  5.  
  6. https://user:password@svn.domain.com
  7. https://user@svn.domain.com
  8. svn://user:password@svn.domain.com/Repo/Trunk/BIN/
  9. svn://svn.domain.com/Repo/Trunk/BIN/
  10.  
  11. <form action='/csvn/j_spring_security_check' method='POST' id='loginForm'>
  12. <input type='text' class='text_' name='j_username' id='j_username' value='' />
  13. <input type='password' class='text_' name='j_password' id='j_password' />
  14. <input type='submit' value='Login' class="Button"/>
  15. </form>
  16.  
  17. RewriteEngine On
  18. RewriteMap lc int:tolower
  19. RewriteCond %{REQUEST_URI} ([a-zA-Z0-9]+):([a-zA-Z0-9]+)@svn.domain.com(.*) [OR]
  20. RewriteCond %{REQUEST_URI} svn.domain.com/(.+)
  21. RewriteRule (.*) ${lc:$1} [R=301,L]
  22.  
  23. # Trace:
  24. # (!) file gets big quickly, remove in prod environments:
  25. RewriteLog "/web/logs/mywebsite.rewrite.log"
  26. RewriteLogLevel 9
  27. RewriteEngine On
  28.  
  29. Authorization: Basic <base64_usr_pwd>
  30.  
  31. PerlHeaderParserHandler MyApache2::ConvertUsrToLowercase
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement