generated from HugoBlox/theme-documentation
-
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update docs #1
Comments
nginx distributes traffic to the services/containers spawned by docker compose supported load distribution methods:
|
|
|
with this file structure:
you can: library(ambiorix)
library(htmltools)
home_get <- \(req, res){
html <- tagList(
tags$h3("One ring to rule them all"),
tags$img(src = "/assets2/the-ring.jpeg", alt = "the one ring")
)
res$send(html)
}
about_get <- \(req, res) {
html <- tagList(
tags$h3("My precious!"),
tags$img(src = "assets/gollum.jpeg")
)
res$send(html)
}
Ambiorix$new()$
static("public", "assets")$
static("another", "assets2")$
get("/", home_get)$
get("/about", about_get)$
start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
there are several sections that need to be updated:
app$status <- 500L
new sections:
The text was updated successfully, but these errors were encountered: