π Welcome to Nginx Learning Server
STATIC SITE SERVED BY NGINX
This page is being served by Nginx, a high-performance web server.
It is configured to serve files from:
/var/www/manfus
π What is happening here?
- Your browser sends a request to
manfus.com
- Nginx receives the request (port 80 or 443)
- It maps the request to this file:
index.html
- Then it returns this HTML page to your browser
π HTTPS is enabled
Your site uses SSL certificates managed by Certbot (Letβs Encrypt).
This means traffic is encrypted using HTTPS.
βοΈ Nginx concept you are learning
- server block β defines website rules
- root β folder where files live
- try_files β controls file lookup
- SSL β encrypts traffic