Skip to content

Instantly share code, notes, and snippets.

@ArnaudBuchholz
Created March 1, 2020 15:31
Show Gist options
  • Save ArnaudBuchholz/e30527cf94acf5df5cd396f11f7bddd9 to your computer and use it in GitHub Desktop.
Save ArnaudBuchholz/e30527cf94acf5df5cd396f11f7bddd9 to your computer and use it in GitHub Desktop.
An example of a web server publishing static files using REserve
{
"port": 8080,
"mappings": [{
"match": "^/$",
"file": "../www/static.html"
}, {
"match": "^/(.*)",
"file": "../www/$1"
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment