You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haproxy-wi/api/app.wsgi

9 lines
237 B

import os, sys
sys.path.append(os.path.join(sys.path[0], '/var/www/haproxy-wi/app/'))
sys.path.append(os.path.dirname(__file__))
import api
import bottle
bottle.debug(True)
application = bottle.default_app()
application.catchall = False