ngx/README.md

32 lines
612 B
Markdown
Raw Normal View History

2024-01-05 15:32:14 +00:00
# ngx
2023-08-09 06:56:34 +00:00
2024-02-29 21:20:44 +00:00
Opinionated nginx config generation for Deno.
2024-02-29 21:27:49 +00:00
## Example
Generate an nginx configuration to permanently redirect some routes from a.com to their new locations at b.com:
```typescript
import ngx from "jsr:@char/ngx@0.1";
const redirects = {
"/a": "https://b.com/new-a",
"/b": "https://b.com/b-v2",
};
const config = ngx("server", [
[
"server_name a.com",
...ngx.listen(),
...ngx.letsEncrypt("a.com"),
],
Object.entries(redirects).map(([path, uri]) =>
ngx(`location = ${path}`, [
`return 301 ${uri}`
])
)
])
if (import.meta.main) console.log(config.build());
```