mirror of
https://github.com/TecharoHQ/anubis.git
synced 2026-04-05 16:28:17 +00:00
14 lines
371 B
Plaintext
14 lines
371 B
Plaintext
server {
|
|
listen 443 ssl http2;
|
|
listen [::]:443 ssl http2;
|
|
server_name nginx.local.cetacean.club;
|
|
|
|
ssl_certificate /etc/techaro/pki/nginx.local.cetacean.club/cert.pem;
|
|
ssl_certificate_key /etc/techaro/pki/nginx.local.cetacean.club/key.pem;
|
|
include snippets/ssl_params;
|
|
|
|
location / {
|
|
proxy_pass http://anubis:3000;
|
|
include snippets/proxy_params;
|
|
}
|
|
} |