dmesgdb

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

httpd.conf (337B)


      1 server "dmesg.devel" {
      2 	listen on 10.7.0.1 port 80
      3 	root "/dmesgdb/var/www"
      4 	log syslog
      5 	
      6 	location "/list/*" {
      7   	  directory auto index
      8 	}
      9 
     10 	location "/beautylist" {
     11 	  fastcgi strip 1
     12 	}
     13 
     14 	location "/upload" {
     15 	  fastcgi strip 1
     16 	}
     17 
     18 	location "/comment" {
     19 	  fastcgi strip 1
     20 	}
     21 
     22 	location "/" {
     23 	  directory index upload
     24         }
     25 }
     26