add paper-k256
This commit is contained in:
parent
a77a1a29a7
commit
1e512af67c
3 changed files with 18 additions and 0 deletions
|
|
@ -10,3 +10,4 @@ deno run ./charlotte-partners-labeler.ts > out/charlotte-partners-labeler.conf
|
||||||
deno run ./bfuse-filter-umm-gay.ts > out/bfuse-filter-umm-gay.conf
|
deno run ./bfuse-filter-umm-gay.ts > out/bfuse-filter-umm-gay.conf
|
||||||
deno run ./hang-out-while-she-watches.ts > out/hang-out-while-she-watches.conf
|
deno run ./hang-out-while-she-watches.ts > out/hang-out-while-she-watches.conf
|
||||||
deno run ./cocoon.ts > out/cocoon.conf
|
deno run ./cocoon.ts > out/cocoon.conf
|
||||||
|
deno run ./paper-k256-umm-gay.ts > out/paper-k256-umm-gay.conf
|
||||||
|
|
|
||||||
16
ngx/paper-k256-umm-gay.ts
Normal file
16
ngx/paper-k256-umm-gay.ts
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
import ngx from "jsr:@char/ngx@0.1";
|
||||||
|
|
||||||
|
export const domain = "paper-k256.umm.gay"
|
||||||
|
|
||||||
|
export const config = ngx("server", [
|
||||||
|
[
|
||||||
|
`server_name ${domain}`,
|
||||||
|
...ngx.listen(),
|
||||||
|
...ngx.letsEncrypt(domain),
|
||||||
|
],
|
||||||
|
ngx("location /", [
|
||||||
|
`root /srv/www/${domain}/web`,
|
||||||
|
]),
|
||||||
|
]);
|
||||||
|
|
||||||
|
if (import.meta.main) console.log(config.build());
|
||||||
1
www/paper-k256.umm.gay/.gitignore
vendored
Normal file
1
www/paper-k256.umm.gay/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/web
|
||||||
Loading…
Reference in a new issue