You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
privatebin/etc/nginx/sites-available/redirect-www-to-apex.conf.tpl

8 lines
176 B

server {
listen 80;
server_name ~^www.(?<domain>.+)$;
include /etc/nginx/server.d/*.conf;
return {{REDIRECT_CODE}} {{REDIRECT_PROTO}}://$domain$request_uri;
}