Return (nginx.conf)
Jump to navigation
Jump to search
HTTP to HTTPS redirection example:
server { listen 80 default_server; server_name _; return 301 https://$host$request_uri; }
https://stackoverflow.com/questions/45318758/nginx-variable-for-subdomain
server { listen 80; server_name ~^(?<mysubdomain>.+)\.example\.com$; return 301 http://example.com/$mysubdomain$request_uri; }
Related terms
- Configure HTTP to HTTPs redirection with Nginx
- AWS ALB: Redirect (AWS::ElasticLoadBalancingV2::Listener)
rewrite
See also
Advertising: