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.

So, i have a html landing page with some php code and django project. Want to make like this: site.com = **landing page ** site.com/dashboard = django project.
what i´ve already did?
create simple index.html in /var/www/html
changed /etc/nginx/sites-available/default
server {
listen 8001 default_server;
listen [::]:8001 default_server ipv6only=on;
server_name localhost;
location / {
proxy_pass http://127.0.0.1:8001;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
location ~ /lp/.*\.php$ {
root /var/www/html;
index index.php index.html index.htm;
set $php_root /var/www/html/;
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location /lp {
root /var/www/html;
index index.php index.html index.htm;
set $php_root /var/www/html/;
try_files $uri $uri/ /index.php;
}
}
Thanks for any help
009fd274aeae48f2bfbda6ef568676
Cloudstream Apk
032f50ee7f7d489db3b05e204fe139
032f50ee7f7d489db3b05e204fe139
Edward Sitarski
ebeecroft
dashan
34bcef38725b4e6eb5224ae028f17e
markatango
gouskova