Skip to content

Instantly share code, notes, and snippets.

@jakubgs
Created September 10, 2024 16:45
Show Gist options
  • Save jakubgs/8992de5a00666276a6c6447f8d45d454 to your computer and use it in GitHub Desktop.
Save jakubgs/8992de5a00666276a6c6447f8d45d454 to your computer and use it in GitHub Desktop.
server {
listen 80;
listen 443 ssl http2;
server_name test.status.im;
ssl_certificate /certs/status.im/bundle.crt;
ssl_certificate_key /certs/status.im/cert.key;
location / {
echo_read_request_body;
echo "echo_request_uri: $echo_request_uri";
echo "request_method: $echo_request_method";
echo "content_length: $content_length";
echo "request_body: $request_body";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment