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.

This is what my config file looks like atm.
server {
listen 80;
listen [::]:80;
root /var/www/html/vanilla;
index index.php index.html index.html;
server_name pvpsmash.net www.pvpsmash.net;
client_max_body_size 100M;
autoindex off;
location ~* /community/\.git { deny all; return 403; }
location /community/build/ { deny all; return 403; }
location /community/cache/ { deny all; return 403; }
location /community/cgi-bin/ { deny all; return 403; }
location /community/uploads/import/ { deny all; return 403; }
location /community/conf/ { deny all; return 403; }
location /community/tests/ { deny all; return 403; }
location /community/vendor/ { deny all; return 403; }
location /forum {try_files $uri $uri/ @forum;}
location /community {
try_files $uri @vanilla;
}
location @vanilla {
rewrite ^/community(/.*) /community/index.php?p=$1&$args last;
}
location / {
try_files $uri @vanilla;
}
location @vanilla {
rewrite ^ /index.php$uri last;
}
location ~* "^/index\.php(/|$)" {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~* "\.php(/|$)" {
rewrite ^ /index.php$uri last;
}
}
009fd274aeae48f2bfbda6ef568676
Cloudstream Apk
Ruz
Ruz
Edward Sitarski
ebeecroft
dashan
34bcef38725b4e6eb5224ae028f17e
markatango
gouskova
Andrew J Montanus