mirror of
https://github.com/lmg-anon/mikupad.git
synced 2026-07-10 01:29:45 +00:00
11 lines
No EOL
248 B
Nginx Configuration File
11 lines
No EOL
248 B
Nginx Configuration File
server {
|
|
listen 3443 ssl;
|
|
|
|
ssl_certificate /public.crt;
|
|
ssl_certificate_key /private.key;
|
|
|
|
location / {
|
|
proxy_pass http://mikupad:3000;
|
|
proxy_buffering off; # Required to keep token streaming smooth
|
|
}
|
|
} |