packages feed

mighttpd2-2.4.0: sample.route

# Sample routing for Mighttpd 2

# Domain lists
[localhost www.example.com]

# Entries are looked up in the specified order
# All paths must end with "/"

# A path to CGI scripts should be specified with "=>"
/~alice/cgi-bin/ => /home/alice/public_html/cgi-bin/

# A path to static files should be specified with "->"
/~alice/         -> /home/alice/public_html/
/cgi-bin/        => /export/cgi-bin/
/                -> /export/www/

# Reverse proxy rules should be specified with ">>"
# /path >> host:port/path2
# Either "host" or ":port" can be committed, but not both.
/app/cal         >> example.net/calendar
# URLs generated by Yesod are absolute.
# We cannot re-write pathinfo.
/app/wiki        >> :8080/app/wiki