Once your instance has been created, the NetBox web UI will be available at https://your_vm_public_ipv4/
. You can access the system shell via SSH:
This instance has been provisioned with a self-signed TLS certificate, which is not suitable for production use. To replace this with a certificate issued by Let’s Encrypt:
1- Update the server_name
parameter in /etc/nginx/sites-available/netbox
2- Create a DNS A record for your domain pointing to this server
3- Run the following: sudo certbot --nginx -d $DOMAIN
(where $DOMAIN
is your domain name)
4- Reload Nginx (systemctl reload nginx
)