Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2011
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. virtualhost
  2. <VirtualHost *:80>
  3. ServerName xxx.cz
  4. DocumentRoot /var/www/xxx/public_html
  5. ServerAdmin webmaster@xxx.cz
  6.  
  7. ErrorLog /var/log/apache2/xxx_error.log
  8. CustomLog /var/log/apache2/xxx_access.log combined
  9. LogLevel debug
  10.  
  11.  
  12.  
  13. SuexecUserGroup xxx xxx
  14. ScriptAlias /cgi-bin/ "/var/www/xxx/.cgi-bin/"
  15.  
  16. <Directory /var/www/xxx/.cgi-bin/>
  17. AllowOverride None
  18. Options None
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22.  
  23.  
  24. <Directory "/var/www/xxx/public_html/">
  25. Options Indexes Includes FollowSymLinks ExecCGI
  26. AllowOverride All
  27. AddHandler php5-fastcgi .php .php5 .php4
  28. Action php5-fastcgi /cgi-bin/php5.fcgi
  29. Order allow,deny
  30. Allow from All
  31. </Directory>
  32. </VirtualHost>
  33.  
  34.  
  35. zapnute moduly
  36. <pre>actions alias auth_basic authn_file authz_default authz_groupfile authz_host authz_user autoindex deflate dir env fastcgi mime negotiation reqtimeout rewrite setenvif status suexec</pre>
  37.  
  38.  
  39. apache2 error.log
  40. [Fri Dec 02 09:17:06 2011] [notice] caught SIGTERM, shutting down
  41. [Fri Dec 02 09:17:07 2011] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
  42. [Fri Dec 02 09:17:07 2011] [notice] Apache/2.2.16 (Debian) mod_fastcgi/2.4.6 configured -- resuming normal operations
  43. [Fri Dec 02 09:17:07 2011] [notice] FastCGI: process manager initialized (pid 17199)
  44.  
  45. apache2 -V
  46. Server version: Apache/2.2.16 (Debian)
  47. Server built: Sep 29 2011 20:59:07
  48. Server's Module Magic Number: 20051115:24
  49. Server loaded: APR 1.4.2, APR-Util 1.3.9
  50. Compiled using: APR 1.4.2, APR-Util 1.3.9
  51. Architecture: 64-bit
  52. Server MPM: Worker
  53. threaded: yes (fixed thread count)
  54. forked: yes (variable process count)
  55. Server compiled with....
  56. -D APACHE_MPM_DIR="server/mpm/worker"
  57. -D APR_HAS_SENDFILE
  58. -D APR_HAS_MMAP
  59. -D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
  60. -D APR_USE_SYSVSEM_SERIALIZE
  61. -D APR_USE_PTHREAD_SERIALIZE
  62. -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
  63. -D APR_HAS_OTHER_CHILD
  64. -D AP_HAVE_RELIABLE_PIPED_LOGS
  65. -D DYNAMIC_MODULE_LIMIT=128
  66. -D HTTPD_ROOT="/etc/apache2"
  67. -D SUEXEC_BIN="/usr/lib/apache2/suexec"
  68. -D DEFAULT_PIDLOG="/var/run/apache2.pid"
  69. -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
  70. -D DEFAULT_ERRORLOG="logs/error_log"
  71. -D AP_TYPES_CONFIG_FILE="mime.types"
  72. -D SERVER_CONFIG_FILE="apache2.conf"
  73.  
  74.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement