This server is alive. The next step is to add your application or to deploy your site files in the document root.
The placeholder you see here is what nginx returns when no other site matches the request.
The default location is /usr/share/nginx/html. Replace index.html with your own.
/etc/nginx/conf.d/ ending with .conf.server { ... } block with listen 80; and server_name yourdomain.tld;.root at the directory holding your site files.sudo nginx -t to test the configuration.sudo systemctl reload nginx.Issue a certificate with your favourite ACME client and add the listen 443 ssl; directives to your server block. Most setups also enable HTTP/2 by appending http2 on the same line.
worker_processes auto; — one worker per CPU.keepalive_timeout 65; — how long idle clients stay open.client_max_body_size — uploads bigger than this are rejected.gzip on; — compress text responses on the fly.If something does not behave, the first place to look is /var/log/nginx/error.log. Most issues are logged there with the request URI and a reason code.
node-7.fra1.example.net