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-apex-to-www.conf

6 lines
130 B

server {
listen 80;
server_name ~^(?!www.)(?<domain>.+)$;
return {{REDIRECT_CODE}} https://www.$domain$request_uri;
}