Difference between revisions of "Apache httpd"
Jump to navigation
Jump to search
(→Subpages: lost subpage found again) |
(→About) |
||
Line 11: | Line 11: | ||
===Subpages=== | ===Subpages=== | ||
* [[/.htaccess]] | * [[/.htaccess]] | ||
+ | * [[/mod_rewrite]] | ||
* [[/SSL]]: configuring Apache to serve [[https]] ([[secure sockets layer|SSL]]) | * [[/SSL]]: configuring Apache to serve [[https]] ([[secure sockets layer|SSL]]) | ||
Line 18: | Line 19: | ||
To see all accesses to your Apache server in more-or-less real-time, run the following from your Apache logfile directory: | To see all accesses to your Apache server in more-or-less real-time, run the following from your Apache logfile directory: | ||
find . -name "*.log" | xargs tail -f | find . -name "*.log" | xargs tail -f | ||
+ | |||
==Links== | ==Links== | ||
===Official=== | ===Official=== | ||
* [http://httpd.apache.org Apache HTTP Server homepage] | * [http://httpd.apache.org Apache HTTP Server homepage] |
Revision as of 10:13, 3 March 2017
About
This page is about the Apache web server software.
Subpages
- /.htaccess
- /mod_rewrite
- /SSL: configuring Apache to serve https (SSL)
Related Pages
useful diagnostics
To see all accesses to your Apache server in more-or-less real-time, run the following from your Apache logfile directory:
find . -name "*.log" | xargs tail -f