Advertisement
Guest User

httpd.conf - jonata

a guest
May 24th, 2010
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. #
  2. # This is the apache config for eucalyptus: we use it only to load the
  3. # axis2c module which will take care of the WebServices
  4. #
  5.  
  6. ServerTokens OS
  7.  
  8. ServerRoot "/tmp"
  9.  
  10. ServerName 127.0.0.1
  11.  
  12. Listen 8774
  13. KeepAliveTimeout 30
  14.  
  15. PidFile EUCALYPTUS/var/run/eucalyptus/httpd.pid
  16.  
  17. User EUCA_USER
  18. group EUCA_USER
  19.  
  20. ErrorLog EUCALYPTUS/var/log/eucalyptus/httpd_error_log
  21.  
  22. LogLevel warn
  23.  
  24. <IfModule authz_host>
  25. <Directory />
  26. Order deny,allow
  27. Allow from 127.0.0.1
  28. Deny from all
  29. </Directory>
  30. </IfModule>
  31.  
  32. <IfModule mpm_prefork_module>
  33. StartServers 0
  34. MinSpareServers 1
  35. MaxSpareServers 0
  36. MaxClients 1
  37. MaxRequestsPerChild 0
  38. </IfModule>
  39.  
  40. <IfModule mpm_worker_module>
  41. StartServers 0
  42. MaxClients 1
  43. MaxRequestsPerChild 0
  44. MinSpareThreads 1
  45. MaxSpareThreads 0
  46. ThreadLimit 1
  47. ThreadsPerChild 1
  48. </IfModule>
  49.  
  50. <IfModule mpm_event_module>
  51. StartServers 0
  52. MaxClients 1
  53. MinSpareThreads 1
  54. MaxSpareThreads 0
  55. ThreadLimit 1
  56. ThreadsPerChild 1
  57. MaxRequestsPerChild 0
  58. </IfModule>
  59.  
  60. LoadModule axis2_module /usr/lib/apache2/modules/libmod_axis2.so
  61. Axis2RepoPath AXIS2C_HOME
  62. Axis2LogFile EUCALYPTUS/var/log/eucalyptus/axis2c.log
  63. Axis2MaxLogFileSize 128
  64. Axis2LogLevel error
  65. <Location /axis2>
  66. SetHandler axis2_module
  67. </Location>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement