Advertisement
Guest User

Untitled

a guest
Feb 5th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. UNISERVERZ:
  2.  
  3.  
  4. 1. make sure you uncomment this line
  5.  
  6. ##====== VIRTUAL HOST ===========
  7. #To enable uncomment next line
  8. Include conf/extra/httpd-vhosts.conf
  9.  
  10. in C:\UniServerZ\core\apache2\conf\httpd.conf
  11.  
  12.  
  13.  
  14. 2. make your C:\UniServerZ\core\apache2\conf\extra\httpd-vhosts.conf
  15.  
  16. looke like this:
  17. ---------------------------------------------------------------------------
  18.  
  19. # Virtual Hosts
  20. #
  21. # If you want to maintain multiple domains/hostnames on your
  22. # machine you can setup VirtualHost containers for them. Most configurations
  23. # use only name-based virtual hosts so the server doesn't need to worry about
  24. # IP addresses. This is indicated by the asterisks in the directives below.
  25. #
  26. # Please see the documentation at
  27. # <URL:http://httpd.apache.org/docs/trunk/vhosts/>
  28. # for further details before you try to setup virtual hosts.
  29. #
  30. # You may use the command line option '-S' to verify your virtual host
  31. # configuration.
  32.  
  33. #
  34. # Use name-based virtual hosting.
  35. #
  36. # VirtualHost example:
  37. # Almost any Apache directive may go into a VirtualHost container.
  38. # The first VirtualHost section is used for all requests that do not
  39. # match a ServerName or ServerAlias in any <VirtualHost> block.
  40. #
  41.  
  42. # First Virtual Host must be a shallow duplicate of the main host
  43. # in httpd.conf
  44.  
  45. <VirtualHost _default_:${AP_PORT}>
  46. DocumentRoot ${US_ROOTF_WWW}
  47. ServerName ${US_SERVERNAME}
  48. ErrorLog "logs/error.log"
  49. CustomLog "logs/access.log" common
  50. </VirtualHost>
  51.  
  52.  
  53. Listen 3303
  54. <VirtualHost 127.0.0.1:3303>
  55. ServerAdmin webmaster@localhost
  56. DocumentRoot C:/UniServerZ/www/cicada
  57. ErrorLog "logs/error3303.log"
  58. CustomLog "logs/access3303.log" combined
  59. </VirtualHost>
  60.  
  61.  
  62. Listen 2202
  63. <VirtualHost 127.0.0.1:2202>
  64. ServerAdmin webmaster@localhost
  65. DocumentRoot C:/UniServerZ/www/cicada2
  66. ErrorLog "logs/error2202.log"
  67. CustomLog "logs/access2202.log" combined
  68. </VirtualHost>
  69. --------------------------------------------------------------------------------------
  70.  
  71. 3. In uniserver set: APACHE>EDIT BASICS AND MODULES>APACHEMODULES ENABLE DISABLE> TURN OFF version_module, info_module, status_module
  72.  
  73.  
  74. 4. Downlaod and copy Cheetahs PHP CGI script to your www map in your uniformz www map, ie.: C:\UniServerZ\www
  75. Make sure you include cicada map so you have C:\UniServerZ\www\cicada\index.php
  76.  
  77. [20:52] <cheetahburn> http://kholyg7cewyywujo.onion/cicada.tgz
  78. [20:52] <cheetahburn> there one could download my full package
  79. [20:52] <cheetahburn> it includes a readme to use it properly
  80. [20:52] <cheetahburn> at least i hope
  81.  
  82.  
  83. 5. Set up onion
  84. Read this: https://www.torproject.org/docs/tor-hidden-service.html.en
  85.  
  86. and se your torrc to look like this
  87. ------------------------------------------------------------------------------------------------
  88. # This file was generated by Tor; if you edit it, comments will not be preserved
  89. # The old torrc file was renamed to torrc.orig.1 or similar, and Tor will ignore it
  90.  
  91. DataDirectory C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor
  92. DirReqStatistics 0
  93. GeoIPFile C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor\geoip
  94.  
  95.  
  96. HiddenServiceDir C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor\3303
  97. HiddenServicePort 80 127.0.0.1:3303
  98.  
  99. HiddenServiceDir C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor\80
  100. HiddenServicePort 80 127.0.0.1:80
  101.  
  102. HiddenServiceDir C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor\22
  103. HiddenServicePort 80 127.0.0.1:2202
  104. --------------------------------------------------------------------------------------------------
  105.  
  106. 6. Check C:\Documents and Settings\Administrator\Desktop\Tor Browser\Data\Tor\3303 for hostname
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement