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 textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
This comment has been deleted
I am confuse! in debian 7 have than do:
[…] server { listen 80;
root /usr/share/nginx/www;
index index.php index.html index.htm; ///add index. php
server_name example.com; ///add ip of our VPS in exem..
location / {
try_files $uri $uri/ /index.html;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
# pass the PHP scripts to FastCGI server listening on /var/run/php5-fpm.sock
location ~ \.php$ {
try_files $uri =404; /// add this
fastcgi_pass unix:/var/run/php5-fpm.sock; ///add this
fastcgi_index index.php; //add this
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; ///add thid
include fastcgi_params; ///add this
}
} […] In Debian 8 we not need mahe this changes???
“You may also want to explore additional options to secure your server. Remember that it is now open to the world wide web and is extremely vulnerable.”
You should include links to more writeups. … for a friend. :)
“Remember that it is now open to the world wide web and is extremely vulnerable.”
How vulnerable the server is if we just install nginx and leave it serving the default ‘welcome’ page? What kind of attacks it can suffer?
Probably useful to note that the sudo update-rc.d nginx defaults step is already the default