Skip to content

content_handler should work also on TLS webserver #95

Description

@andreasschulze

consider this /echo.inc:

location {
  default_type text/plain; 
  echo_duplicate 1 $echo_client_request_headers;
  echo "\r";
  echo_read_request_body;
  echo_request_body; 
  echo_flush;
}
server {
  listen *:80;
  include /echo.inc;
}
server {
  listen *:443 ssl http2;
  ssl_certificate /cert.pem;
  ssl_certificate_key /key.pem;
  include /echo.inc;
}

the expected result happen only on port HTTP but not on HTTPS

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions