Advertisement
Guest User

Untitled

a guest
Jul 17th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.14 KB | None | 0 0
  1. root@www:/etc/apache2/sites-available# service apache2 reload
  2. * Reloading web server config apache2 [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name pndfaucet.crypto-co.in -- ignoring!
  3. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name pndjack.crypto-co.in -- ignoring!
  4. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name pndjack.crypto-co.in -- ignoring!
  5. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name pndwheel.crypto-co.in -- ignoring!
  6. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name pndwheel.crypto-co.in -- ignoring!
  7. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitfaucet.crypto-co.in -- ignoring!
  8. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitfaucet.crypto-co.in -- ignoring!
  9. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitdice.crypto-co.in -- ignoring!
  10. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitdice.crypto-co.in -- ignoring!
  11. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitjack.crypto-co.in -- ignoring!
  12. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitjack.crypto-co.in -- ignoring!
  13. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitwheel.crypto-co.in -- ignoring!
  14. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name zeitwheel.crypto-co.in -- ignoring!
  15. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkfaucet.crypto-co.in -- ignoring!
  16. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkfaucet.crypto-co.in -- ignoring!
  17. [Fri Jul 17 11:49:48 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkdice.crypto-co.in -- ignoring!
  18. [Fri Jul 17 11:49:49 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkdice.crypto-co.in -- ignoring!
  19. [Fri Jul 17 11:49:49 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkjack.crypto-co.in -- ignoring!
  20. [Fri Jul 17 11:49:49 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkjack.crypto-co.in -- ignoring!
  21. [Fri Jul 17 11:49:49 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkwheel.crypto-co.in -- ignoring!
  22. [Fri Jul 17 11:49:49 2015] [error] (EAI 2)Name or service not known: Could not resolve host name funkwheel.crypto-co.in -- ignoring!
  23. apache2: Could not reliably determine the server's fully qualified domain name, using www.crypto-with.in for ServerName
  24. [Fri Jul 17 11:49:49 2015] [warn] NameVirtualHost pndfaucet.crypto-co.in:80 has no VirtualHosts
  25. [Fri Jul 17 11:49:49 2015] [warn] NameVirtualHost pnddice.crypto-co.in:80 has no VirtualHosts
  26. [Fri Jul 17 11:49:49 2015] [warn] NameVirtualHost *:80 has no VirtualHosts
  27. [ OK ]
  28.  
  29.  
  30. default.conf
  31. NameVirtualHost *:80
  32. <VirtualHost *:80>
  33. DocumentRoot /var/www/html
  34. <Directory />
  35. Options FollowSymLinks
  36. AllowOverride None
  37. </Directory>
  38. <Directory /var/www/html>
  39. Options Indexes FollowSymLinks MultiViews
  40. AllowOverride None
  41. Order allow,deny
  42. allow from all
  43. </Directory>
  44.  
  45. </VirtualHost>
  46. <VirtualHost crypto-with.in:80>
  47. ServerAdmin admin@crypto-with.in
  48. ServerName crypto-with.in
  49. ServerAlias www.crypto-with.in
  50. DocumentRoot /var/www/html
  51. <Directory />
  52. Options FollowSymLinks
  53. AllowOverride None
  54. </Directory>
  55. <Directory /var/www/html>
  56. Options Indexes FollowSymLinks MultiViews
  57. AllowOverride None
  58. Order allow,deny
  59. allow from all
  60. </Directory>
  61.  
  62. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  63. <Directory "/usr/lib/cgi-bin">
  64. AllowOverride None
  65. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  66. Order allow,deny
  67. Allow from all
  68. </Directory>
  69.  
  70. ErrorLog ${APACHE_LOG_DIR}/error.log
  71.  
  72. # Possible values include: debug, info, notice, warn, error, crit,
  73. # alert, emerg.
  74. LogLevel warn
  75.  
  76. CustomLog ${APACHE_LOG_DIR}/access.log combined
  77.  
  78. Alias /doc/ "/usr/share/doc/"
  79. <Directory "/usr/share/doc/">
  80. Options Indexes MultiViews FollowSymLinks
  81. AllowOverride None
  82. Order deny,allow
  83. Deny from all
  84. Allow from 127.0.0.0/255.0.0.0 ::1/128
  85. </Directory>
  86.  
  87. </VirtualHost>
  88.  
  89.  
  90.  
  91. THIS IS crypto-co.in.conf
  92.  
  93. NameVirtualHost crypto-co.in:80
  94. <VirtualHost crypto-co.in:80>
  95. ServerAdmin admin@crypto-with.in
  96. ServerName crypto-co.in
  97. ServerAlias www.crypto-co.in
  98. DocumentRoot /home/crypto-co.in/public_html
  99. <Directory />
  100. Options FollowSymLinks
  101. AllowOverride None
  102. </Directory>
  103. <Directory /home/crypto-co.in/public_html>
  104. Options Indexes FollowSymLinks MultiViews
  105. AllowOverride None
  106. Order allow,deny
  107. allow from all
  108. </Directory>
  109.  
  110. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  111. <Directory "/usr/lib/cgi-bin">
  112. AllowOverride None
  113. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  114. Order allow,deny
  115. Allow from all
  116. </Directory>
  117.  
  118. ErrorLog ${APACHE_LOG_DIR}/error.log
  119.  
  120. # Possible values include: debug, info, notice, warn, error, crit,
  121. # alert, emerg.
  122. LogLevel warn
  123.  
  124. CustomLog ${APACHE_LOG_DIR}/access.log combined
  125.  
  126. Alias /doc/ "/usr/share/doc/"
  127. <Directory "/usr/share/doc/">
  128. Options Indexes MultiViews FollowSymLinks
  129. AllowOverride None
  130. Order deny,allow
  131. Deny from all
  132. Allow from 127.0.0.0/255.0.0.0 ::1/128
  133. </Directory>
  134.  
  135. </VirtualHost>
  136.  
  137. NameVirtualHost pndfaucet.crypto-co.in:80
  138. <VirtualHost pndfaucet.crypto-co.in:80>
  139. ServerAdmin admin@crypto-with.in
  140. ServerName pndfaucet.crypto-co.in
  141. DocumentRoot /home/crypto-co.in/pndfaucet
  142. <Directory />
  143. Options FollowSymLinks
  144. AllowOverride None
  145. </Directory>
  146. <Directory /home/crypto-co.in/pndfaucet>
  147. Options Indexes FollowSymLinks MultiViews
  148. AllowOverride None
  149. Order allow,deny
  150. allow from all
  151. </Directory>
  152.  
  153. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  154. <Directory "/usr/lib/cgi-bin">
  155. AllowOverride None
  156. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  157. Order allow,deny
  158. Allow from all
  159. </Directory>
  160.  
  161. ErrorLog ${APACHE_LOG_DIR}/error.log
  162.  
  163. # Possible values include: debug, info, notice, warn, error, crit,
  164. # alert, emerg.
  165. LogLevel warn
  166.  
  167. CustomLog ${APACHE_LOG_DIR}/access.log combined
  168.  
  169. Alias /doc/ "/usr/share/doc/"
  170. <Directory "/usr/share/doc/">
  171. Options Indexes MultiViews FollowSymLinks
  172. AllowOverride None
  173. Order deny,allow
  174. Deny from all
  175. Allow from 127.0.0.0/255.0.0.0 ::1/128
  176. </Directory>
  177.  
  178. </VirtualHost>
  179.  
  180. NameVirtualHost pnddice.crypto-co.in:80
  181. <VirtualHost pnddice.crypto-co.in:80>
  182. ServerAdmin admin@crypto-with.in
  183. ServerName pnddice.crypto-co.in
  184. DocumentRoot /home/crypto-co.in/pnddice
  185. <Directory />
  186. Options FollowSymLinks
  187. AllowOverride None
  188. </Directory>
  189. <Directory /home/crypto-co.in/pnddice>
  190. Options Indexes FollowSymLinks MultiViews
  191. AllowOverride None
  192. Order allow,deny
  193. allow from all
  194. </Directory>
  195.  
  196. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  197. <Directory "/usr/lib/cgi-bin">
  198. AllowOverride None
  199. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  200. Order allow,deny
  201. Allow from all
  202. </Directory>
  203.  
  204. ErrorLog ${APACHE_LOG_DIR}/error.log
  205.  
  206. # Possible values include: debug, info, notice, warn, error, crit,
  207. # alert, emerg.
  208. LogLevel warn
  209.  
  210. CustomLog ${APACHE_LOG_DIR}/access.log combined
  211.  
  212. Alias /doc/ "/usr/share/doc/"
  213. <Directory "/usr/share/doc/">
  214. Options Indexes MultiViews FollowSymLinks
  215. AllowOverride None
  216. Order deny,allow
  217. Deny from all
  218. Allow from 127.0.0.0/255.0.0.0 ::1/128
  219. </Directory>
  220.  
  221. </VirtualHost>
  222.  
  223. NameVirtualHost pndjack.crypto-co.in:80
  224. <VirtualHost pndjack.crypto-co.in:80>
  225. ServerAdmin admin@crypto-with.in
  226. ServerName pndjack.crypto-co.in
  227. DocumentRoot /home/crypto-co.in/pndjack
  228. <Directory />
  229. Options FollowSymLinks
  230. AllowOverride None
  231. </Directory>
  232. <Directory /home/crypto-co.in/pndjack>
  233. Options Indexes FollowSymLinks MultiViews
  234. AllowOverride None
  235. Order allow,deny
  236. allow from all
  237. </Directory>
  238.  
  239. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  240. <Directory "/usr/lib/cgi-bin">
  241. AllowOverride None
  242. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  243. Order allow,deny
  244. Allow from all
  245. </Directory>
  246.  
  247. ErrorLog ${APACHE_LOG_DIR}/error.log
  248.  
  249. # Possible values include: debug, info, notice, warn, error, crit,
  250. # alert, emerg.
  251. LogLevel warn
  252.  
  253. CustomLog ${APACHE_LOG_DIR}/access.log combined
  254.  
  255. Alias /doc/ "/usr/share/doc/"
  256. <Directory "/usr/share/doc/">
  257. Options Indexes MultiViews FollowSymLinks
  258. AllowOverride None
  259. Order deny,allow
  260. Deny from all
  261. Allow from 127.0.0.0/255.0.0.0 ::1/128
  262. </Directory>
  263.  
  264. </VirtualHost>
  265.  
  266. NameVirtualHost pndwheel.crypto-co.in:80
  267. <VirtualHost pndwheel.crypto-co.in:80>
  268. ServerAdmin admin@crypto-with.in
  269. ServerName pndwheel.crypto-co.in
  270. DocumentRoot /home/crypto-co.in/pndwheel
  271. <Directory />
  272. Options FollowSymLinks
  273. AllowOverride None
  274. </Directory>
  275. <Directory /home/crypto-co.in/pndwheel>
  276. Options Indexes FollowSymLinks MultiViews
  277. AllowOverride None
  278. Order allow,deny
  279. allow from all
  280. </Directory>
  281.  
  282. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  283. <Directory "/usr/lib/cgi-bin">
  284. AllowOverride None
  285. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  286. Order allow,deny
  287. Allow from all
  288. </Directory>
  289.  
  290. ErrorLog ${APACHE_LOG_DIR}/error.log
  291.  
  292. # Possible values include: debug, info, notice, warn, error, crit,
  293. # alert, emerg.
  294. LogLevel warn
  295.  
  296. CustomLog ${APACHE_LOG_DIR}/access.log combined
  297.  
  298. Alias /doc/ "/usr/share/doc/"
  299. <Directory "/usr/share/doc/">
  300. Options Indexes MultiViews FollowSymLinks
  301. AllowOverride None
  302. Order deny,allow
  303. Deny from all
  304. Allow from 127.0.0.0/255.0.0.0 ::1/128
  305. </Directory>
  306.  
  307. </VirtualHost>
  308.  
  309. NameVirtualHost zeitfaucet.crypto-co.in:80
  310. <VirtualHost zeitfaucet.crypto-co.in:80>
  311. ServerAdmin admin@crypto-with.in
  312. ServerName zeitfaucet.crypto-co.in
  313. DocumentRoot /home/crypto-co.in/zeitfaucet
  314. <Directory />
  315. Options FollowSymLinks
  316. AllowOverride None
  317. </Directory>
  318. <Directory /home/crypto-co.in/zeitfaucet>
  319. Options Indexes FollowSymLinks MultiViews
  320. AllowOverride None
  321. Order allow,deny
  322. allow from all
  323. </Directory>
  324.  
  325. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  326. <Directory "/usr/lib/cgi-bin">
  327. AllowOverride None
  328. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  329. Order allow,deny
  330. Allow from all
  331. </Directory>
  332.  
  333. ErrorLog ${APACHE_LOG_DIR}/error.log
  334.  
  335. # Possible values include: debug, info, notice, warn, error, crit,
  336. # alert, emerg.
  337. LogLevel warn
  338.  
  339. CustomLog ${APACHE_LOG_DIR}/access.log combined
  340.  
  341. Alias /doc/ "/usr/share/doc/"
  342. <Directory "/usr/share/doc/">
  343. Options Indexes MultiViews FollowSymLinks
  344. AllowOverride None
  345. Order deny,allow
  346. Deny from all
  347. Allow from 127.0.0.0/255.0.0.0 ::1/128
  348. </Directory>
  349.  
  350. </VirtualHost>
  351.  
  352. NameVirtualHost zeitdice.crypto-co.in:80
  353. <VirtualHost zeitdice.crypto-co.in:80>
  354. ServerAdmin admin@crypto-with.in
  355. ServerName zeitdice.crypto-co.in
  356. DocumentRoot /home/crypto-co.in/zeitdice
  357. <Directory />
  358. Options FollowSymLinks
  359. AllowOverride None
  360. </Directory>
  361. <Directory /home/crypto-co.in/zeitdice>
  362. Options Indexes FollowSymLinks MultiViews
  363. AllowOverride None
  364. Order allow,deny
  365. allow from all
  366. </Directory>
  367.  
  368. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  369. <Directory "/usr/lib/cgi-bin">
  370. AllowOverride None
  371. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  372. Order allow,deny
  373. Allow from all
  374. </Directory>
  375.  
  376. ErrorLog ${APACHE_LOG_DIR}/error.log
  377.  
  378. # Possible values include: debug, info, notice, warn, error, crit,
  379. # alert, emerg.
  380. LogLevel warn
  381.  
  382. CustomLog ${APACHE_LOG_DIR}/access.log combined
  383.  
  384. Alias /doc/ "/usr/share/doc/"
  385. <Directory "/usr/share/doc/">
  386. Options Indexes MultiViews FollowSymLinks
  387. AllowOverride None
  388. Order deny,allow
  389. Deny from all
  390. Allow from 127.0.0.0/255.0.0.0 ::1/128
  391. </Directory>
  392.  
  393. </VirtualHost>
  394.  
  395. NameVirtualHost zeitjack.crypto-co.in:80
  396. <VirtualHost zeitjack.crypto-co.in:80>
  397. ServerAdmin admin@crypto-with.in
  398. ServerName zeitjack.crypto-co.in
  399. DocumentRoot /home/crypto-co.in/zeitjack
  400. <Directory />
  401. Options FollowSymLinks
  402. AllowOverride None
  403. </Directory>
  404. <Directory /home/crypto-co.in/zeitjack>
  405. Options Indexes FollowSymLinks MultiViews
  406. AllowOverride None
  407. Order allow,deny
  408. allow from all
  409. </Directory>
  410.  
  411. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  412. <Directory "/usr/lib/cgi-bin">
  413. AllowOverride None
  414. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  415. Order allow,deny
  416. Allow from all
  417. </Directory>
  418.  
  419. ErrorLog ${APACHE_LOG_DIR}/error.log
  420.  
  421. # Possible values include: debug, info, notice, warn, error, crit,
  422. # alert, emerg.
  423. LogLevel warn
  424.  
  425. CustomLog ${APACHE_LOG_DIR}/access.log combined
  426.  
  427. Alias /doc/ "/usr/share/doc/"
  428. <Directory "/usr/share/doc/">
  429. Options Indexes MultiViews FollowSymLinks
  430. AllowOverride None
  431. Order deny,allow
  432. Deny from all
  433. Allow from 127.0.0.0/255.0.0.0 ::1/128
  434. </Directory>
  435.  
  436. </VirtualHost>
  437.  
  438. NameVirtualHost zeitwheel.crypto-co.in:80
  439. <VirtualHost zeitwheel.crypto-co.in:80>
  440. ServerAdmin admin@crypto-with.in
  441. ServerName zeitwheel.crypto-co.in
  442. DocumentRoot /home/crypto-co.in/zeitwheel
  443. <Directory />
  444. Options FollowSymLinks
  445. AllowOverride None
  446. </Directory>
  447. <Directory /home/crypto-co.in/zeitwheel>
  448. Options Indexes FollowSymLinks MultiViews
  449. AllowOverride None
  450. Order allow,deny
  451. allow from all
  452. </Directory>
  453.  
  454. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  455. <Directory "/usr/lib/cgi-bin">
  456. AllowOverride None
  457. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  458. Order allow,deny
  459. Allow from all
  460. </Directory>
  461.  
  462. ErrorLog ${APACHE_LOG_DIR}/error.log
  463.  
  464. # Possible values include: debug, info, notice, warn, error, crit,
  465. # alert, emerg.
  466. LogLevel warn
  467.  
  468. CustomLog ${APACHE_LOG_DIR}/access.log combined
  469.  
  470. Alias /doc/ "/usr/share/doc/"
  471. <Directory "/usr/share/doc/">
  472. Options Indexes MultiViews FollowSymLinks
  473. AllowOverride None
  474. Order deny,allow
  475. Deny from all
  476. Allow from 127.0.0.0/255.0.0.0 ::1/128
  477. </Directory>
  478.  
  479. </VirtualHost>
  480.  
  481. NameVirtualHost funkfaucet.crypto-co.in:80
  482. <VirtualHost funkfaucet.crypto-co.in:80>
  483. ServerAdmin admin@crypto-with.in
  484. ServerName funkfaucet.crypto-co.in
  485. DocumentRoot /home/crypto-co.in/funkfaucet
  486. <Directory />
  487. Options FollowSymLinks
  488. AllowOverride None
  489. </Directory>
  490. <Directory /home/crypto-co.in/funkfaucet>
  491. Options Indexes FollowSymLinks MultiViews
  492. AllowOverride None
  493. Order allow,deny
  494. allow from all
  495. </Directory>
  496.  
  497. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  498. <Directory "/usr/lib/cgi-bin">
  499. AllowOverride None
  500. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  501. Order allow,deny
  502. Allow from all
  503. </Directory>
  504.  
  505. ErrorLog ${APACHE_LOG_DIR}/error.log
  506.  
  507. # Possible values include: debug, info, notice, warn, error, crit,
  508. # alert, emerg.
  509. LogLevel warn
  510.  
  511. CustomLog ${APACHE_LOG_DIR}/access.log combined
  512.  
  513. Alias /doc/ "/usr/share/doc/"
  514. <Directory "/usr/share/doc/">
  515. Options Indexes MultiViews FollowSymLinks
  516. AllowOverride None
  517. Order deny,allow
  518. Deny from all
  519. Allow from 127.0.0.0/255.0.0.0 ::1/128
  520. </Directory>
  521.  
  522. </VirtualHost>
  523.  
  524. NameVirtualHost funkdice.crypto-co.in:80
  525. <VirtualHost funkdice.crypto-co.in:80>
  526. ServerAdmin admin@crypto-with.in
  527. ServerName funkdice.crypto-co.in
  528. DocumentRoot /home/crypto-co.in/funkdice
  529. <Directory />
  530. Options FollowSymLinks
  531. AllowOverride None
  532. </Directory>
  533. <Directory /home/crypto-co.in/funkdice>
  534. Options Indexes FollowSymLinks MultiViews
  535. AllowOverride None
  536. Order allow,deny
  537. allow from all
  538. </Directory>
  539.  
  540. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  541. <Directory "/usr/lib/cgi-bin">
  542. AllowOverride None
  543. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  544. Order allow,deny
  545. Allow from all
  546. </Directory>
  547.  
  548. ErrorLog ${APACHE_LOG_DIR}/error.log
  549.  
  550. # Possible values include: debug, info, notice, warn, error, crit,
  551. # alert, emerg.
  552. LogLevel warn
  553.  
  554. CustomLog ${APACHE_LOG_DIR}/access.log combined
  555.  
  556. Alias /doc/ "/usr/share/doc/"
  557. <Directory "/usr/share/doc/">
  558. Options Indexes MultiViews FollowSymLinks
  559. AllowOverride None
  560. Order deny,allow
  561. Deny from all
  562. Allow from 127.0.0.0/255.0.0.0 ::1/128
  563. </Directory>
  564.  
  565. </VirtualHost>
  566.  
  567. NameVirtualHost funkjack.crypto-co.in:80
  568. <VirtualHost funkjack.crypto-co.in:80>
  569. ServerAdmin admin@crypto-with.in
  570. ServerName funkjack.crypto-co.in
  571. DocumentRoot /home/crypto-co.in/funkjack
  572. <Directory />
  573. Options FollowSymLinks
  574. AllowOverride None
  575. </Directory>
  576. <Directory /home/crypto-co.in/funkjack>
  577. Options Indexes FollowSymLinks MultiViews
  578. AllowOverride None
  579. Order allow,deny
  580. allow from all
  581. </Directory>
  582.  
  583. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  584. <Directory "/usr/lib/cgi-bin">
  585. AllowOverride None
  586. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  587. Order allow,deny
  588. Allow from all
  589. </Directory>
  590.  
  591. ErrorLog ${APACHE_LOG_DIR}/error.log
  592.  
  593. # Possible values include: debug, info, notice, warn, error, crit,
  594. # alert, emerg.
  595. LogLevel warn
  596.  
  597. CustomLog ${APACHE_LOG_DIR}/access.log combined
  598.  
  599. Alias /doc/ "/usr/share/doc/"
  600. <Directory "/usr/share/doc/">
  601. Options Indexes MultiViews FollowSymLinks
  602. AllowOverride None
  603. Order deny,allow
  604. Deny from all
  605. Allow from 127.0.0.0/255.0.0.0 ::1/128
  606. </Directory>
  607.  
  608. </VirtualHost>
  609.  
  610. NameVirtualHost funkwheel.crypto-co.in:80
  611. <VirtualHost funkwheel.crypto-co.in:80>
  612. ServerAdmin admin@crypto-with.in
  613. ServerName funkwheel.crypto-co.in
  614. DocumentRoot /home/crypto-co.in/funkwheel
  615. <Directory />
  616. Options FollowSymLinks
  617. AllowOverride None
  618. </Directory>
  619. <Directory /home/crypto-co.in/funkwheel>
  620. Options Indexes FollowSymLinks MultiViews
  621. AllowOverride None
  622. Order allow,deny
  623. allow from all
  624. </Directory>
  625.  
  626. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  627. <Directory "/usr/lib/cgi-bin">
  628. AllowOverride None
  629. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  630. Order allow,deny
  631. Allow from all
  632. </Directory>
  633.  
  634. ErrorLog ${APACHE_LOG_DIR}/error.log
  635.  
  636. # Possible values include: debug, info, notice, warn, error, crit,
  637. # alert, emerg.
  638. LogLevel warn
  639.  
  640. CustomLog ${APACHE_LOG_DIR}/access.log combined
  641.  
  642. Alias /doc/ "/usr/share/doc/"
  643. <Directory "/usr/share/doc/">
  644. Options Indexes MultiViews FollowSymLinks
  645. AllowOverride None
  646. Order deny,allow
  647. Deny from all
  648. Allow from 127.0.0.0/255.0.0.0 ::1/128
  649. </Directory>
  650.  
  651. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement