apache.php 942 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <!--
  3. Autor : Herley Ramos
  4. Data : 22/12/2017
  5. Projeto: Dicas
  6. Meta : Organizar as dicas do LAMP e Node.js (agora neste html, antes em OOo)
  7. -->
  8. <?php
  9. include("cabecalho.php");
  10. ?>
  11. <section>
  12. <!--apache-->
  13. <h1>Apache no Linux Debian <span style="font-family: 'Noto Sans', sans-serif;">9.3</span> Stretch</h1>
  14. <h1>e no Debian <span style="font-family: 'Noto Sans', sans-serif;">10</span> Buster</h1>
  15. <h2>Instalar Apache 2.4.29</h2>
  16. <h3>Instalando o Apache 2.4.29</h3>
  17. <h4>Código</h4>
  18. <div class="box sombra">
  19. $ sudo apt install apache2<br/>
  20. </div>
  21. <h3>Teste a instalação</h3>
  22. <h4>Abra no seu Navegador</h4>
  23. <div class="box sombra">
  24. <a href="http://localhost/" class="a" target="_blank">http://localhost/</a>
  25. </div>
  26. </section>
  27. <?php
  28. for($i=0; $i<23; $i++) {echo'<br/>';}
  29. include("rodape.php");
  30. ?>