Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Ubuntu already added these directives as shown,

Code Block
langhtml
tpham@krypton:/etc/apache2$ find . -type f | xargs grep -i listen

...


./ports.conf:Listen 80

...


./ports.conf:

...

    Listen 443

...


tpham@krypton:/etc/apache2$ find . -type f | xargs grep -i namevirtualhost

...


./ports.conf:NameVirtualHost *:80

...


./ports.conf:

...

    # NameVirtualHost statement here

...


tpham@krypton:/etc/apache2$

Next

There's much more to Apache than this. For example, we could set up public and private Online Shares. If you are serving real traffic you might want to read the next step about configuring logging. If you are just playing around then you can skip to setting up an application server.

...