Hi,
I would like to know if anyone have web2py running on OpenBSD 5.7 using
new httpd server. I've started web2py with fcgihandler and tried a simple
configuration with no luck (probably wrong, that's why I am asking here):
# cat /etc/httpd.conf
# $OpenBSD: httpd.conf,v 1.14 2015/02/04 08:39:35 florian Exp $
#
# Macros
#
ext_addr="XX.XX.XX.XX"
#
# Global Options
#
prefork 2
#
# Servers
#
# A minimal default server
server "default" {
listen on $ext_addr port 80
location "/*" {
fastcgi socket \
"/tmp/fcgi.sock"
}
root "/var/www/htdocs"
}
# Include MIME types instead of the built-in ones
types {
include "/usr/share/misc/mime.types"
}
Any help would be very appreciated. Thanks!!
Regards,
Alvaro