Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

How can I bind a process(i.e. Web server) to a floating IP address? I want to configure NGINX to listen only on the floating IP. However, Ubuntu doesn’t detect the floating IP at all, and NGINX gives an error whenever I try:
nginx: [emerg] bind() to floating_ip:443 failed (99: Cannot assign requested address)
The config I’m using is:
server{
listen floating_ip:443 ssl;
ssl_certificate /var/www/.acme.sh/domain_name.com/fullchain.cer;
ssl_certificate_key /var/www/.acme.sh/domain_name.com/domain_name.com.key;
location /{
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header scheme $scheme;
proxy_set_header X_FORWARDED_PROTO $scheme;
proxy_pass http://127.0.0.1:80;
}
}
Joseph Yan
Kainat Naz
6150608e10bf4ecd8c466bd4379d9b
walsayer
Gaëtan
Lea Cards
7c6b0993468b4cabbd702951d263e3
erikkraijenoord
5ceb60a003a34e4cada01f7d9a44a9
260f4e7ddacd4d639b097467453e39
Juan Pablo
catbyte-io