Created
September 10, 2024 16:45
-
-
Save jakubgs/8992de5a00666276a6c6447f8d45d454 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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