Advertisement
default50

Apache Config

Nov 28th, 2011
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. <IfModule fcgid_module>
  2. #fcgi settings (see http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html)
  3. FcgidMaxProcesses 16
  4. FcgidMaxProcessesPerClass 16
  5. FcgidIOTimeout 300
  6. </IfModule>
  7.  
  8. ↓↓↓↓ One line like this for every image PointSymbolizer ↓↓↓↓
  9. MMapFile "/opt/benchmarking_data/icons/Airport.gif"
  10. ↓↓↓↓ One line like this for every SLD ↓↓↓↓
  11. MMapFile "/opt/benchmarking_data/slds/ms-gnis.sld"
  12.  
  13. ↓↓↓↓ One line like this for every image PointSymbolizer ↓↓↓↓
  14. CacheFile "/opt/benchmarking_data/icons/Airport.gif"
  15. ↓↓↓↓ One line like this for every SLD ↓↓↓↓
  16. CacheFile "/opt/benchmarking_data/slds/ms-gnis.sld"
  17.  
  18. <VirtualHost *:80>
  19. ServerName mapserver.supertv.channel
  20. ServerAlias mapserver
  21.  
  22. DocumentRoot /var/www
  23. <Directory />
  24. Options FollowSymLinks
  25. AllowOverride None
  26. </Directory>
  27. <Directory /var/www/>
  28. Options Indexes FollowSymLinks MultiViews
  29. AllowOverride None
  30. Order allow,deny
  31. allow from all
  32. </Directory>
  33.  
  34. ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
  35. <Directory "/usr/lib/cgi-bin">
  36. AllowOverride None
  37. Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
  38. Order allow,deny
  39. Allow from all
  40. </Directory>
  41.  
  42. ErrorLog ${APACHE_LOG_DIR}/mapserver-error.log
  43.  
  44. # Possible values include: debug, info, notice, warn, error, crit,
  45. # alert, emerg.
  46. LogLevel warn
  47.  
  48. CustomLog ${APACHE_LOG_DIR}/mapserver-access.log combined
  49. </VirtualHost>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement