OldManRiver

Untitled

Nov 6th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.57 KB | None | 0 0
  1. This paste contains 4 files:
  2. 1.) /etc/apache2/apache2.conf,
  3. 2.) /etc/apache2/sites-available/000-default.conf
  4. 3.) /etc/apache2/conf-available/aliases.conf
  5. 4.) /var/www/index.html
  6.  
  7. ############################################################################
  8. File: /etc/apache2/apache2.conf,
  9. ############################################################################
  10. # Global configuration
  11. #
  12. ServerRoot "/etc/apache2"
  13. DefaultRuntimeDir ${APACHE_RUN_DIR}
  14. PidFile ${APACHE_PID_FILE}
  15. Timeout 300
  16. KeepAlive On
  17. MaxKeepAliveRequests 100
  18. KeepAliveTimeout 5
  19. User ${APACHE_RUN_USER}
  20. Group ${APACHE_RUN_GROUP}
  21. HostnameLookups Off
  22. ErrorLog ${APACHE_LOG_DIR}/error.log
  23. LogLevel warn
  24. IncludeOptional mods-enabled/*.load
  25. IncludeOptional mods-enabled/*.conf
  26. Include ports.conf
  27. <Directory />
  28. Options FollowSymLinks
  29. AllowOverride None
  30. Require all denied
  31. </Directory>
  32. <Directory /usr/share>
  33. AllowOverride None
  34. Require all granted
  35. </Directory>
  36. <Directory /var/www/>
  37. Options Indexes FollowSymLinks
  38. AllowOverride None
  39. Require all granted
  40. </Directory>
  41. <Directory /3T/Suncs/>
  42. # Enable the secondary HD via fstab def of "3T"!
  43. Options Indexes FollowSymLinks
  44. AllowOverride None
  45. Require all granted
  46. </Directory>
  47. <Directory /3T/Suncs/Projects/Webs/>
  48. Options Indexes FollowSymLinks
  49. AllowOverride None
  50. Require all granted
  51. </Directory>
  52. AccessFileName .htaccess
  53. <FilesMatch "^\.ht">
  54. Require all denied
  55. </FilesMatch>
  56. LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
  57. LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
  58. LogFormat "%h %l %u %t \"%r\" %>s %O" common
  59. LogFormat "%{Referer}i -> %U" referer
  60. LogFormat "%{User-agent}i" agent
  61. IncludeOptional conf-enabled/*.conf
  62. IncludeOptional sites-enabled/*.conf
  63.  
  64. ############################################################################
  65. File: /etc/apache2/sites-available/000-default.conf
  66. ############################################################################
  67. <VirtualHost *:80>
  68. ServerAdmin webmaster@localhost
  69. DocumentRoot /3T/Syncs/Projects/Web/
  70. <Directory/>
  71. Options FollowSymLinks
  72. AllowOverride None
  73. </Directory>
  74. <Directory /3T/Syncs/Projects/Web/>
  75. Options Indexes FollowSymLinks MultiViews
  76. AllowOverride None
  77. Order allow,deny
  78. allow from all
  79. </Directory>
  80. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  81. <Directory "/usr/lib/cgi-bin">
  82. AllowOverride None
  83. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  84. Order allow,deny
  85. Allow from all
  86. </Directory>
  87. # Possible values include: debug, info, notice, warn, error, crit,
  88. # alert, emerg.
  89. LogLevel warn
  90. ErrorLog ${APACHE_LOG_DIR}/error.log
  91. CustomLog ${APACHE_LOG_DIR}/access.log combined
  92. Alias /doc/ "/usr/share/doc/"
  93. <Directory "/usr/share/doc/">
  94. Options Indexes MultiViews FollowSymLinks
  95. AllowOverride None
  96. Order deny,allow
  97. Deny from all
  98. Allow from 127.0.0.0/255.0.0.0 ::1/128
  99. </Directory>
  100. </VirtualHost>
  101.  
  102.  
  103. ############################################################################
  104. File: /etc/apache2/conf-available/aliases.conf
  105. ############################################################################
  106. # Latest Alias file 20/11/05
  107.  
  108. Alias "/ads" "/3T/Syncs/Corporate/Marketing/Ad Campaigns/"
  109. <Directory "/3T/Syncs/Corporate/Marketing/Ad Campaigns/">
  110. Options Indexes MultiViews FollowSymLinks
  111. AllowOverride All
  112. Require all granted
  113. </Directory>
  114.  
  115. Alias "/CLA" "/3T/Syncs/Corporate/Marketing/Ad Campaigns/CL/"
  116. <Directory "/3T/Syncs/Corporate/Marketing/Ad Campaigns/CL/">
  117. Options Indexes MultiViews FollowSymLinks
  118. AllowOverride All
  119. Require all granted
  120. </Directory>
  121.  
  122. Alias "/dbox" "/3T/files/Dropbox/"
  123. <Directory "/3T/files/Dropbox/">
  124. Options Indexes MultiViews FollowSymLinks
  125. AllowOverride All
  126. Require all granted
  127. </Directory>
  128.  
  129. Alias "/files" "/3T/files/"
  130. <Directory "/3T/files/">
  131. Options Indexes MultiViews FollowSymLinks
  132. AllowOverride All
  133. Require all granted
  134. </Directory>
  135.  
  136. Alias "/job-ads" "/3T/Syncs/Marketing/Ad Campaigns/Job_ADs/"
  137. <Directory "/3T/Syncs/Marketing/Ad Campaigns/Job_ADs/">
  138. Options Indexes MultiViews FollowSymLinks
  139. AllowOverride All
  140. Require all granted
  141. </Directory>
  142.  
  143. Alias "/ministry" "/3T/files/Dropbox/@Ministry/"
  144. <Directory "/3T/files/Dropbox/@Ministry/">
  145. Options Indexes MultiViews FollowSymLinks
  146. AllowOverride All
  147. Require all granted
  148. </Directory>
  149.  
  150. Alias "/myfiles" "/home/myfiles/"
  151. <Directory "/home/myfiles/">
  152. Options Indexes MultiViews FollowSymLinks
  153. AllowOverride All
  154. Require all granted
  155. </Directory>
  156.  
  157. Alias "/projects" "/3T/Syncs/Projects/"
  158. <Directory "/3T/Syncs/Projects/">
  159. Options Indexes MultiViews FollowSymLinks
  160. AllowOverride All
  161. Require all granted
  162. </Directory>
  163.  
  164. Alias "/resumes" "/3T/Syncs/Resumes/"
  165. <Directory "/3T/Syncs/Resumes/">
  166. Options Indexes MultiViews FollowSymLinks
  167. AllowOverride All
  168. Require all granted
  169. </Directory>
  170.  
  171. Alias "/SEO" "/3T/Syncs/Projects/seo-testing/"
  172. <Directory "/3T/Syncs/Projects/seo-testing/">
  173. Options Indexes MultiViews FollowSymLinks
  174. AllowOverride All
  175. Require all granted
  176. </Directory>
  177.  
  178. Alias "/TopicC" "/3T/Syncs/Projects/Topical Chain Reference/"
  179. <Directory "/3T/Syncs/Projects/Topical Chain Reference/">
  180. Options Indexes MultiViews FollowSymLinks
  181. AllowOverride All
  182. Require all granted
  183. </Directory>
  184.  
  185. Alias "/tripod" "/3T/Syncs/Resumes/Job Search/Tripod Files/"
  186. <Directory "/3T/Syncs/Resumes/Job Search/Tripod Files/">
  187. Options Indexes MultiViews FollowSymLinks
  188. AllowOverride All
  189. Require all granted
  190. </Directory>
  191.  
  192. Alias "/pear" "/usr/share/php/htdocs/"
  193. <Directory "/usr/share/php/htdocs/">
  194. Options Indexes MultiViews FollowSymLinks
  195. AllowOverride All
  196. Require all granted
  197. </Directory>
  198.  
  199. Alias "/phpmyadmin" "/usr/share/phpmyadmin/"
  200. <Directory "/usr/share/phpmyadmin/">
  201. Options Indexes MultiViews FollowSymLinks
  202. AllowOverride All
  203. Require all granted
  204. </Directory>
  205.  
  206. Alias "/Symfony" "/var/www/Frameworks/Symfony/"
  207. <Directory "/var/www/Frameworks/Symfony/">
  208. Options Indexes MultiViews FollowSymLinks
  209. AllowOverride All
  210. Require all granted
  211. </Directory>
  212.  
  213. Alias "/WRU" "/3T/Syncs/Corporate/Companies & Holdings/AEC_FamilyCs/Webs-R-Us/"
  214. <Directory "/3T/Syncs/Corporate/Companies & Holdings/AEC_FamilyCs/Webs-R-Us/>
  215. Options Indexes MultiViews FollowSymLinks
  216. AllowOverride All
  217. Require all granted
  218. </Directory>
  219.  
  220. ############################################################################
  221. File: /var/www/index.html
  222. ############################################################################
  223. # NOTE: This file is modified from the original to contain linke to all the
  224. # aliases defined to allow click access to all aliases.
  225. ############################################################################
  226. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  227. <html xmlns="http://www.w3.org/1999/xhtml">
  228. <!--
  229. Modified from the Debian original for Ubuntu
  230. Last updated: 2014-03-19
  231. See: https://launchpad.net/bugs/1288690
  232. -->
  233. <head>
  234. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  235. <title>Apache2 Ubuntu Default Page: It works</title>
  236. <style type="text/css" media="screen">
  237. * {
  238. margin: 0px 0px 0px 0px;
  239. padding: 0px 0px 0px 0px;
  240. }
  241.  
  242. body, html {
  243. padding: 3px 3px 3px 3px;
  244.  
  245. background-color: #D8DBE2;
  246.  
  247. font-family: Verdana, sans-serif;
  248. font-size: 11pt;
  249. text-align: center;
  250. }
  251.  
  252. div.main_page {
  253. position: relative;
  254. display: table;
  255.  
  256. width: 800px;
  257.  
  258. margin-bottom: 3px;
  259. margin-left: auto;
  260. margin-right: auto;
  261. padding: 0px 0px 0px 0px;
  262.  
  263. border-width: 2px;
  264. border-color: #212738;
  265. border-style: solid;
  266.  
  267. background-color: #FFFFFF;
  268.  
  269. text-align: center;
  270. }
  271.  
  272. div.page_header {
  273. height: 99px;
  274. width: 100%;
  275.  
  276. background-color: #F5F6F7;
  277. }
  278.  
  279. div.page_header span {
  280. margin: 15px 0px 0px 50px;
  281.  
  282. font-size: 180%;
  283. font-weight: bold;
  284. }
  285.  
  286. div.page_header img {
  287. margin: 3px 0px 0px 40px;
  288.  
  289. border: 0px 0px 0px;
  290. }
  291.  
  292. div.table_of_contents {
  293. clear: left;
  294.  
  295. min-width: 200px;
  296.  
  297. margin: 3px 3px 3px 3px;
  298.  
  299. background-color: #FFFFFF;
  300.  
  301. text-align: left;
  302. }
  303.  
  304. div.table_of_contents_item {
  305. clear: left;
  306.  
  307. width: 100%;
  308.  
  309. margin: 4px 0px 0px 0px;
  310.  
  311. background-color: #FFFFFF;
  312.  
  313. color: #000000;
  314. text-align: left;
  315. }
  316.  
  317. div.table_of_contents_item a {
  318. margin: 6px 0px 0px 6px;
  319. }
  320.  
  321. div.content_section {
  322. margin: 3px 3px 3px 3px;
  323.  
  324. background-color: #FFFFFF;
  325.  
  326. text-align: left;
  327. }
  328.  
  329. div.content_section_text {
  330. padding: 4px 8px 4px 8px;
  331.  
  332. color: #000000;
  333. font-size: 100%;
  334. }
  335.  
  336. div.content_section_text pre {
  337. margin: 8px 0px 8px 0px;
  338. padding: 8px 8px 8px 8px;
  339.  
  340. border-width: 1px;
  341. border-style: dotted;
  342. border-color: #000000;
  343.  
  344. background-color: #F5F6F7;
  345.  
  346. font-style: italic;
  347. }
  348.  
  349. div.content_section_text p {
  350. margin-bottom: 6px;
  351. }
  352.  
  353. div.content_section_text ul, div.content_section_text li {
  354. padding: 4px 8px 4px 16px;
  355. }
  356.  
  357. div.section_header {
  358. padding: 3px 6px 3px 6px;
  359.  
  360. background-color: #8E9CB2;
  361.  
  362. color: #FFFFFF;
  363. font-weight: bold;
  364. font-size: 112%;
  365. text-align: center;
  366. }
  367.  
  368. div.section_header_red {
  369. background-color: #CD214F;
  370. }
  371.  
  372. div.section_header_grey {
  373. background-color: #9F9386;
  374. }
  375.  
  376. .floating_element {
  377. position: relative;
  378. float: left;
  379. }
  380.  
  381. div.table_of_contents_item a,
  382. div.content_section_text a {
  383. text-decoration: none;
  384. font-weight: bold;
  385. }
  386.  
  387. div.table_of_contents_item a:link,
  388. div.table_of_contents_item a:visited,
  389. div.table_of_contents_item a:active {
  390. color: #000000;
  391. }
  392.  
  393. div.table_of_contents_item a:hover {
  394. background-color: #000000;
  395.  
  396. color: #FFFFFF;
  397. }
  398.  
  399. div.content_section_text a:link,
  400. div.content_section_text a:visited,
  401. div.content_section_text a:active {
  402. background-color: #DCDFE6;
  403.  
  404. color: #000000;
  405. }
  406.  
  407. div.content_section_text a:hover {
  408. background-color: #000000;
  409.  
  410. color: #DCDFE6;
  411. }
  412.  
  413. div.validator {
  414. }
  415. </style>
  416. </head>
  417. <body>
  418. <div class="main_page">
  419. <div class="page_header floating_element">
  420. <img src="/icons/ubuntu-logo.png" alt="Ubuntu Logo" class="floating_element"/>
  421. <span class="floating_element">
  422. Apache2 Ubuntu Default Page
  423. </span>
  424. </div>
  425. <!-- <div class="table_of_contents floating_element">
  426. <div class="section_header section_header_grey">
  427. TABLE OF CONTENTS
  428. </div>
  429. <div class="table_of_contents_item floating_element">
  430. <a href="#about">About</a>
  431. </div>
  432. <div class="table_of_contents_item floating_element">
  433. <a href="#changes">Changes</a>
  434. </div>
  435. <div class="table_of_contents_item floating_element">
  436. <a href="#scope">Scope</a>
  437. </div>
  438. <div class="table_of_contents_item floating_element">
  439. <a href="#files">Config files</a>
  440. </div>
  441. </div>
  442. -->
  443. <div class="content_section floating_element">
  444.  
  445.  
  446. <div class="section_header section_header_red">
  447. <div id="about"></div>
  448. It works!
  449. </div>
  450. <div class="content_section_text">
  451. <p>
  452. This is the default welcome page used to test the correct
  453. operation of the Apache2 server after installation on Ubuntu systems.
  454. It is based on the equivalent page on Debian, from which the Ubuntu Apache
  455. packaging is derived.
  456. If you can read this page, it means that the Apache HTTP server installed at
  457. this site is working properly. You should <b>replace this file</b> (located at
  458. <tt>/var/www/html/index.html</tt>) before continuing to operate your HTTP server.
  459. </p>
  460.  
  461.  
  462. <p>
  463. If you are a normal user of this web site and don't know what this page is
  464. about, this probably means that the site is currently unavailable due to
  465. maintenance.
  466. If the problem persists, please contact the site's administrator.
  467. </p>
  468.  
  469. </div>
  470. <div class="section_header">
  471. <div id="changes"></div>
  472. Configuration Overview
  473. </div>
  474. <div class="content_section_text">
  475. <p>
  476. Ubuntu's Apache2 default configuration is different from the
  477. upstream default configuration, and split into several files optimized for
  478. interaction with Ubuntu tools. The configuration system is
  479. <b>fully documented in
  480. /usr/share/doc/apache2/README.Debian.gz</b>. Refer to this for the full
  481. documentation. Documentation for the web server itself can be
  482. found by accessing the <a href="/manual">manual</a> if the <tt>apache2-doc</tt>
  483. package was installed on this server.
  484.  
  485. </p>
  486. <p>
  487. The configuration layout for an Apache2 web server installation on Ubuntu systems is as follows:
  488. </p>
  489. <pre>
  490. /etc/apache2/
  491. |-- apache2.conf
  492. | `-- ports.conf
  493. |-- mods-enabled
  494. | |-- *.load
  495. | `-- *.conf
  496. |-- conf-enabled
  497. | `-- *.conf
  498. |-- sites-enabled
  499. | `-- *.conf
  500. </pre>
  501. <ul>
  502. <li>
  503. <tt>apache2.conf</tt> is the main configuration
  504. file. It puts the pieces together by including all remaining configuration
  505. files when starting up the web server.
  506. </li>
  507.  
  508. <li>
  509. <tt>ports.conf</tt> is always included from the
  510. main configuration file. It is used to determine the listening ports for
  511. incoming connections, and this file can be customized anytime.
  512. </li>
  513.  
  514. <li>
  515. Configuration files in the <tt>mods-enabled/</tt>,
  516. <tt>conf-enabled/</tt> and <tt>sites-enabled/</tt> directories contain
  517. particular configuration snippets which manage modules, global configuration
  518. fragments, or virtual host configurations, respectively.
  519. </li>
  520.  
  521. <li>
  522. They are activated by symlinking available
  523. configuration files from their respective
  524. *-available/ counterparts. These should be managed
  525. by using our helpers
  526. <tt>
  527. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2enmod">a2enmod</a>,
  528. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2dismod">a2dismod</a>,
  529. </tt>
  530. <tt>
  531. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2ensite">a2ensite</a>,
  532. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2dissite">a2dissite</a>,
  533. </tt>
  534. and
  535. <tt>
  536. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2enconf">a2enconf</a>,
  537. <a href="http://manpages.debian.org/cgi-bin/man.cgi?query=a2disconf">a2disconf</a>
  538. </tt>. See their respective man pages for detailed information.
  539. </li>
  540.  
  541. <li>
  542. The binary is called apache2. Due to the use of
  543. environment variables, in the default configuration, apache2 needs to be
  544. started/stopped with <tt>/etc/init.d/apache2</tt> or <tt>apache2ctl</tt>.
  545. <b>Calling <tt>/usr/bin/apache2</tt> directly will not work</b> with the
  546. default configuration.
  547. </li>
  548. </ul>
  549. </div>
  550.  
  551. <div class="section_header">
  552. <div id="docroot"></div>
  553. Document Roots
  554. </div>
  555.  
  556. <div class="content_section_text">
  557. <p>
  558. By default, Ubuntu does not allow access through the web browser to
  559. <em>any</em> file apart of those located in <tt>/var/www</tt>,
  560. <a href="http://httpd.apache.org/docs/2.4/mod/mod_userdir.html">public_html</a>
  561. directories (when enabled) and <tt>/usr/share</tt> (for web
  562. applications). If your site is using a web document root
  563. located elsewhere (such as in <tt>/srv</tt>) you may need to whitelist your
  564. document root directory in <tt>/etc/apache2/apache2.conf</tt>.
  565. </p>
  566. <p>
  567. The default Ubuntu document root is <tt>/var/www/html</tt>. You
  568. can make your own virtual hosts under /var/www. This is different
  569. to previous releases which provides better security out of the box.
  570. </p>
  571. </div>
  572.  
  573. <div class="section_header">
  574. <div id="alias"></div>
  575. Aliases
  576. </div>
  577. <div class="content_section_text">
  578. <p>
  579. This Apache2 configuration inclues aliases assignments for:
  580. </p>
  581. <center>
  582. <table width='85%' align='center' border='0'>
  583. <tr>
  584. <td width='20%'><b>Alias</b></td><td width='5%'>&nbsp;</td><td><b>Link</b></td>
  585. </tr>
  586. <tr>
  587. <td><b>ADS</b></td><td>=></td><td><a href="http://localhost/ads">localhost/ads</a></td>
  588. </tr>
  589. <tr>
  590. <td><b>CL-ADs</b></td><td>=></td><td><a href="http://localhost/CLA">localhost/CLA</a></td>
  591. </tr>
  592. <tr>
  593. <td><b>DBOX</b></td><td>=></td><td><a href="http://localhost/dbox">localhost/dbox</a></td>
  594. </tr>
  595. <tr>
  596. <td><b>Files</b></td><td>=></td><td><a href="http://localhost/files">localhost/files</a></td>
  597. </tr>
  598. <tr>
  599. <td><b>Job-Ads</b></td><td>=></td><td><a href="http://localhost/job-ads">localhost/job-ads</a></td>
  600. </tr>
  601. <tr>
  602. <td><b>Ministry</b></td><td>=></td><td><a href="http://localhost/ministry">localhost/ministry</a></td>
  603. </tr>
  604. <tr>
  605. <td><b>Manuals</b></td><td>=></td><td><a href="http://localhost/Manuals">localhost/Manuals</a></td>
  606. </tr>
  607. <tr>
  608. <td><b>MyStuff</b></td><td>=></td><td><a href="http://localhost/MyStuff">localhost/MyStuff</a></td>
  609. </tr>
  610. <tr>
  611. <td><b>Pear</b></td><td>=></td><td><a href="http://localhost/pear">localhost/pear</a></td>
  612. </tr>
  613. <tr>
  614. <td><b>PHPmyAdmin</b></td><td>=></td><td><a href="http://localhost/phpmyadmin">localhost/phpmyadmin</a></td>
  615. </tr>
  616. <tr>
  617. <td><b>Projects</b></td><td>=></td><td><a href="http://localhost/projects">localhost/projects</a></td>
  618. </tr>
  619. <tr>
  620. <td><b>Resumes</b></td><td>=></td><td><a href="http://localhost/resumes">localhost/resumes</a></td>
  621. </tr>
  622. <tr>
  623. <td><b>SEO</b></td><td>=></td><td><a href="http://localhost/SEO">localhost/SEO</a></td>
  624. </tr>
  625. <tr>
  626. <td><b>SEO_Panel</b></td><td>=></td><td><a href="http://localhost/SEO_Panel">localhost/SEO_Panel</a></td>
  627. </tr>
  628. <tr>
  629. <td><b>Symfony</b></td><td>=></td><td><a href="http://localhost/Symfony">localhost/Symfony</a></td>
  630. </tr>
  631. <tr>
  632. <td><b>TopicC</b></td><td>=></td><td><a href="http://localhost/TopicC">localhost/TopicC</a></td>
  633. </tr>
  634. <tr>
  635. <td><b>Tripod</b></td><td>=></td><td><a href="http://localhost/tripod">localhost/tripod</a></td>
  636. </tr>
  637. <tr>
  638. <td><b>WRU</b></td><td>=></td><td><a href="http://localhost/WRU">localhost/WRU</a></td>
  639. </tr>
  640. </table>
  641. </center>
  642. </div>
  643.  
  644.  
  645. <div class="section_header">
  646. <div id="bugs"></div>
  647. Reporting Problems
  648. </div>
  649. <div class="content_section_text">
  650. <p>
  651. Please use the <tt>ubuntu-bug</tt> tool to report bugs in the
  652. Apache2 package with Ubuntu. However, check <a
  653. href="https://bugs.launchpad.net/ubuntu/+source/apache2">existing
  654. bug reports</a> before reporting a new bug.
  655. </p>
  656. <p>
  657. Please report bugs specific to modules (such as PHP and others)
  658. to respective packages, not to the web server itself.
  659. </p>
  660. </div>
  661.  
  662.  
  663.  
  664.  
  665. </div>
  666. </div>
  667. <div class="validator">
  668. <p>
  669. <a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a>
  670. </p>
  671. </div>
  672. </body>
  673. </html>
  674.  
Add Comment
Please, Sign In to add comment