Hello,
I need some help with nginx config, I have created an A record for www.domain.domain.com to point to server where i have cofigured my app www.test.com, i have created below rule to make redirection:
server {
listen 80;
server_name www.domain.domain.com *.domain.com;
location = / {
return 301 https://domain.domain.com/Songs/join;
}
}
but i don't know to activate SSL in this server for this subdomain, in above case is the same app used only URL is different. Attached is my nginx configuration.
Edited 1 time(s). Last edit at 01/22/2019 06:37AM by Edi14.