Skip to content

content_handler should work also on TLS webserver #95

@andreasschulze

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

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