Every Nordweb virtual server gets its own address under nordvps.fi when it is set up, for example 2532.nordvps.fi. The address points to your server's IP address, so you can reach the server by name right away without a domain of your own.
You can find the address at the top of the server card on the VPS tab of your account, with a copy button next to it.
The identifier is a random number so that it cannot resemble anyone's brand and so that names do not turn into a race. The identifier cannot currently be chosen or changed.
The server name you gave when ordering is an internal identifier shown in the management view and on the server itself. It is not a public address and you cannot reach the server with it. Always use the nordvps.fi address or the server's IP address.
You can freely create your own names under your address, for example app.2532.nordvps.fi for an application and db.2532.nordvps.fi for a database. That gives each service a clear address without a domain of your own.
Names are written relative to your own address. The character @ means the address itself and plain app means app.2532.nordvps.fi. You can only see and edit the records of your own server.
A change usually shows up on the name servers within a few minutes. The old value can still live in caches for the length of the TTL, so shorten the TTL in advance if you know you are about to move an address.
The address works without encryption by default. When you want to use HTTPS, get a certificate from your account and install it on your server. We obtain and renew the certificate for you, but we never connect to your server, so the installation is up to you.
/etc/ssl/nordweb/, and point your web server at them.The private key is a secret. Do not send it by email, and restrict the file so that only root can read it: sudo chmod 600 /etc/ssl/nordweb/privkey.pem.
server {
listen 443 ssl;
server_name 2532.nordvps.fi;
ssl_certificate /etc/ssl/nordweb/fullchain.pem;
ssl_certificate_key /etc/ssl/nordweb/privkey.pem;
}
Check the configuration and apply it: sudo nginx -t && sudo systemctl reload nginx
<VirtualHost *:443>
ServerName 2532.nordvps.fi
SSLEngine on
SSLCertificateFile /etc/ssl/nordweb/fullchain.pem
SSLCertificateKeyFile /etc/ssl/nordweb/privkey.pem
</VirtualHost>
Enable the module if needed and reload the configuration: sudo a2enmod ssl && sudo apachectl configtest && sudo systemctl reload apache2
We renew the certificate automatically before it expires. The renewed certificate does not reach your server by itself, because we never connect to it. Download the new certificate from your account, replace the old files and reload your web server configuration.
A factory reset does not lose the certificate, because it is not stored on the server. Download it again after the reset and install it the same way as the first time.
Your own domain and the nordvps.fi address work side by side. You can build the service ready on the nordvps.fi address and point your own domain to the same IP address only once everything is in place.