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.

Hello
I have a lot of location routings inside my default Nginx default file. I decided to move some of them based on the application that use them in separate .conf files. The problem is that when I transfer locations to the separate files and include them info the default files nginx does not restart
Main file :
server {
# Enable HTTP/2
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name xxxx www.xxx;
ssl_certificate /etc/xxxx;
ssl_certificate_key /etc/xxx;
# Include the SSL configuration from cipherli.st
include snippets/ssl-params.conf;
include /etc/nginx/conf.d/*.conf;
location / {
xxxx
proxy_pass http://localhost:5000/;
xxxx
}
}
The sample.conf file
location /test/ {
xxxx
proxy_pass http://localhost:7000/
}
location /test2/ {
proxy_pass http://localhost:8000/;
}
location /sam/test3 {
return 301 /sam/test2/;
}
009fd274aeae48f2bfbda6ef568676
Cloudstream Apk
Ruz
Ruz
Edward Sitarski
ebeecroft
dashan
34bcef38725b4e6eb5224ae028f17e
markatango
gouskova