Virtualmin alias

Hello,

I am trying to set up alias for my domains the thing is:

Main domain: domain.eu -> root for this is home/domain/

Aliases: domain.de, domain.fr

Nginx config of aliases:

server {
server_name domain.de www.domain.de;
listen xxx.xxx.xxx.xxx;
root /home/domain/public_html;
index index.html index.htm index.php;
access_log /var/log/virtualmin/domain.de_access_log;
error_log /var/log/virtualmin/domain.de_error_log;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_FILENAME /home/domain/public_html$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT /home/domain/public_html;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_param HTTPS $https;
location ~ .php$ {
try_files $uri =404;
#fastcgi_pass unix:/var/php-nginx/15161112352697.sock/socket;
fastcgi_pass unix:/var/php-nginx/14892222483561.sock/socket; -> this is same as defined in domain.eu
}
listen 93.170.77.172:443 ssl;
ssl_certificate /home/domain.de/ssl.cert;
ssl_certificate_key /home/domain.de/ssl.key;
}

I want to know if it is good solution or if there is any other way to do this

I gave up on this solution. I added it as alias and I have to take care of ssl but I cannot:

server_name domain.eu www.domain.eu domain.hu www.domain.hu;
listen xx.xx.xx.xx;
if ($scheme != “https”) {
rewrite ^ https://domain.eu$uri permanent;
}

It will be redirected to the url I put there, how can I change it so it uses the “correct” ?

I got it working with this but I need to remove www. From $host

if ($scheme != “https”) {
rewrite ^ https://$host$uri permanent;
}

Is this automaticly solved in Newer Virtualmin?

So for Apache and/or NGINX that there is no more www. in “Subdomain” / Subserver / Alias / or main Virtual Servers itself for “Subdomains”?