Ingen beskrivning
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

etc_apache2_sites-available_00-status.conf 390B

12345678910111213141516
  1. # This needs to be the first configured virtualhost on port 80 so that
  2. # requests to http://localhost hit this rather than any other vhost
  3. <VirtualHost *:80>
  4. <Location />
  5. SetHandler server-status
  6. Require ip 127.0.0.1
  7. </Location>
  8. </VirtualHost>
  9. <VirtualHost *:443>
  10. SSLEngine On
  11. <Location />
  12. SetHandler server-status
  13. Require ip 127.0.0.1
  14. </Location>
  15. </VirtualHost>