For example:
test.domain.com:8000/event/123
redirect to:
https://test.domain.com/event/123
黄舟2017-05-16 17:25:53
Just add the following code to your 8000 server configuration
rewrite ^/event/123 https://test.domain.com/event/123 permanent;
某草草2017-05-16 17:25:53
server {
listen 8000;
server_name test.domain.com;
return 301 $scheme://test.domain.com$request_uri;
}