<div dir="ltr"><div dir="ltr">Hi,<input name="virtru-metadata" type="hidden" value="{"email-policy":{"state":"closed","expirationUnit":"days","disableCopyPaste":false,"disablePrint":false,"disableForwarding":false,"enableNoauth":false,"persistentProtection":false,"expandedWatermarking":false,"expires":false,"isManaged":false},"attachments":{},"compose-id":"1","compose-window":{"secure":false}}"><div><br></div><div>We've running nginx as reverse proxy for backend domain named "<a href="http://mydomain.com">mydomain.com</a>". On proxy server we've setup vhost that covers domain and all subdomains *.<a href="http://mydomain.com">mydomain.com</a>.</div><div><br></div><div>What we need is that if user request to any subdomain like <a href="http://work.mydomain.com">work.mydomain.com</a>, he should be proxied to single backend <a href="http://mydomain.com">mydomain.com</a> but all underline links e.g css/js should be changed to <b><a href="http://work-mydomain-com.newdomain.com">work-mydomain-com.newdomain.com</a></b> . If second user requests <a href="http://nginx.mydomain.com">nginx.mydomain.com</a>, he should be proxied back to single backend <b><a href="http://mydomain.com">mydomain.com</a></b> while underline links css/js should be changed to <b><a href="http://nginx-mydomain-com.newdomain.com">nginx-mydomain-com.newdomain.com</a>.</b></div><div><br></div><div>As you can see we want all dots in domain/subdomain to be changed to hyphen (-).</div><div><br></div><div>I am able to change css/js links using sub_filter to <a href="http://work.mydomain.com.newdomain.com">work.mydomain.com.newdomain.com</a> by making use of $host param but i am struggling on changing it to hyphens.</div><div><br></div><div>Please check this nginx config and advise on how to change hostname from dots to hyphen in sub_filter e.g:</div><div><br></div><div><a href="http://mydomain.com">mydomain.com</a> ==> <a href="http://mydomain-com.newdomain.com">mydomain-com.newdomain.com</a><br><a href="http://work.mydomain.com">work.mydomain.com</a> ==> <a href="http://work-mydomain-com.newdomain.com">work-mydomain-com.newdomain.com</a></div><div><a href="http://nginx.mydomain.com">nginx.mydomain.com</a> ==> <a href="http://nginx-mydomain-com.newdomain.com">nginx-mydomain-com.newdomain.com</a></div><div><br></div><div>====================================================</div><div><br></div><div><div>upstream server {</div><div>        server <a href="http://10.10.10.10:443">10.10.10.10:443</a>;</div><div><br></div><div>}</div><div>server {</div><div>    listen      80;</div><div>    listen 443 ssl http2;</div><div>    ssl_certificate /etc/ssl/certs/mydomain/mydomain.crt;</div><div>    ssl_certificate_key /etc/ssl/certs/mydomain/privkey1.pem;</div><div>    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;</div><div>    ssl_ciphers 'ECDHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4';</div><div>    ssl_prefer_server_ciphers on;</div><div>    server_name <a href="http://mydomain.com">mydomain.com</a> *.<a href="http://mydomain.com">mydomain.com</a>;</div><div><br></div><div><br></div><div><br></div><div>    location / {</div><div><br></div><div>        proxy_set_header Accept-Encoding "";</div><div>        #subs_filter_types text/css text/xml text/css;</div><div>        sub_filter "<a href="https://mydomain.com">https://mydomain.com</a>" "https://$<a href="http://host.newdomain.com">host.newdomain.com</a>";</div><div><br></div><div>        sub_filter_once off;</div><div>        proxy_pass <a href="https://server">https://server</a>;</div><div>        proxy_set_header HOST <a href="http://mydomain.com">mydomain.com</a>;</div><div>    }</div><div>}</div></div><div><br></div></div></div>