forked from Maurice/pastabble
12 lines
244 B
Plaintext
12 lines
244 B
Plaintext
server {
|
|
listen 443 http2;
|
|
server_name paste.plabble.org;
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
ssl_early_data on;
|
|
include certs/plabble.org/config.conf;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:8080;
|
|
}
|
|
} |