Advertisement
Guest User

apache synology

a guest
Jun 5th, 2014
454
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. Hi.
  2.  
  3. Yes the include line is there.
  4. Neither http://filestation.domain.com:7000 or https://filestation.domain.com:7000 works.
  5. I also tried with http://www.google.fr, it doesn't work either.
  6.  
  7. It is all just as if the second part of the file is ignored or overruled by something.
  8.  
  9. Below is what I use to be abble to access my DS anyway.
  10. I added extra spaces to try to save formatting when posting here.
  11. I mixed your tutorial with another found online (especially for the top of the file)
  12. It works but it is plain http, no ssl.
  13.  
  14.  
  15.  
  16. < IfModule !proxy_module >
  17. LoadModule proxy_module modules/mod_proxy.so
  18. < /IfModule >
  19.  
  20. < IfModule !proxy_connect_module >
  21. LoadModule proxy_connect_module modules/mod_proxy_connect.so
  22. < /IfModule >
  23.  
  24. < IfModule !proxy_http_module >
  25. LoadModule proxy_http_module modules/mod_proxy_http.so
  26. < /IfModule >
  27.  
  28. #LoadModule ssl_module modules/mod_ssl.so
  29.  
  30. NameVirtualHost *:80
  31.  
  32. < VirtualHost *:80 >
  33. ServerName filestation.domain.com
  34. ProxyRequests Off
  35. ProxyVia Off
  36. < Proxy * >
  37. Order deny,allow
  38. Allow from all
  39. < /Proxy >
  40. ProxyPass / http://localhost:7000/
  41. ProxyPassReverse / http://localhost:7000/
  42. < /VirtualHost >
  43.  
  44. I would really like to get your solution working.
  45. What do you suggest ?
  46.  
  47. Thanks a lot !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement