Advertisement
Guest User

Untitled

a guest
Jan 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. $config['base_url'] = "http://production.host.com"; // the production value of $_SERVER['SERVER_NAME'] essentially
  2.  
  3. $route['companyone'] = 'sso/platformsso/requestgenericsso/companyone';
  4. $route['companyone/(:any)'] = 'sso/ptlatformsso/requestgenericsso/companyone/$1';
  5.  
  6. <VirtualHost 192.168.1.1:80>
  7. ServerAdmin me@host.com
  8. DocumentRoot "/var/mnt/a"
  9. ServerName "a.tmbc.com"
  10. ErrorLog logs/a.error.log
  11. Alias ssaml /var/simplesamlphp/www
  12. </VirtualHost>
  13. <Directory "/var/mnt/a">
  14. Options FollowSymLinks
  15. AllowOverride All
  16. Order allow,deny
  17. Allow from all
  18. </Directory>
  19.  
  20. Directory populated using CIFS mount: mount -t cifs //1.2.3.4/a /var/mnt/a -o rw,username=un,password=pwd,uid=48 --verbose1
  21.  
  22. <VirtualHost 192.168.1.1:80>
  23. ServerAdmin me@host.com
  24. DocumentRoot "/var/www/html/b"
  25. ServerName "b.host.com"
  26. ErrorLog logs/b.error.log
  27. Alias ssaml /var/simplesamlphp/www
  28. </VirtualHost>
  29. <Directory "/var/www/html/b">
  30. Options FollowSymLinks
  31. AllowOverride All
  32. Order allow,deny
  33. Allow from all
  34. </Directory>
  35.  
  36. Directory populated using SVN checkout: svn checkout file:///var/svn/repo/trunk /var/www/html/b
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement