Hello,
I would like to know what lines to uncomment in the NGINX block below. Do I uncomment the first three and leave the default last two lines uncommented, as well. Or do I uncomment the first three and comment the last two?
Also, do I leave the « $cdn » part or remove it?
Thank you very much!
#set $cdn https://???.s3.eu-central-1.wasabisys.com;
#rewrite ^/static/webseed/(.)$ $cdn/videos/$1 redirect;
#rewrite ^/static/(.)$ $cdn/$1 redirect;
rewrite ^/static/webseed/(.)$ /videos/$1 break;
rewrite ^/static/(.)$ /$1 break;