Cookies and similar technologies are a fundamental part of the functioning of our Platform. The primary purpose of cookies is to make browsing more convenient and efficient, as well as to enable us to improve our services and the Platform itself. Additionally, cookies are used to display advertisements that are relevant to users when visiting third-party websites and apps. Here, you can find all the information about the cookies we use, and you can enable and/or disable them according to your preferences, except for the strictly necessary cookies required for the Platform's functionality. It is important to note that blocking certain cookies may affect your experience on the Platform and its functionality. By pressing “Confirm Settings,” the cookie preferences you have selected will be saved. If no option has been selected, pressing this button will be equivalent to rejecting all cookies. For more information, you can refer to our Cookie Policy.
Thinhnam.net Configuration Here
# Logs access_log /var/log/nginx/thinhnam.net_access.log; error_log /var/log/nginx/thinhnam.net_error.log;
ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256; ssl_prefer_server_ciphers off; ssl_session_timeout 1d; ssl_session_cache shared:SSL:10m; ssl_session_tickets off; | Measure | Command / Action | |---------|------------------| | Disable directory listing | Nginx: autoindex off; / Apache: Options -Indexes | | Remove server version | Nginx: server_tokens off; / Apache: ServerSignature Off | | Limit upload size | client_max_body_size 10M; (Nginx) or LimitRequestBody 10485760 (Apache) | | Block bad bots | Use if ($http_user_agent ~* (badbot|scraper)) return 403; (Nginx) | | Regular updates | sudo apt update && sudo apt upgrade | 6. Email Configuration (If Self-Hosting) Install a mail stack (Postfix + Dovecot): Thinhnam.net Configuration
location / try_files $uri $uri/ =404;
# Security Headers add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Content-Type-Options "nosniff" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always; # Logs access_log /var/log/nginx/thinhnam
You can adapt the specific code blocks based on your hosting environment. 1. Overview Domain: thinhnam.net Purpose: This document provides standard configurations for DNS, web server (Apache/Nginx), SSL/TLS security, email, and performance tuning. 2. DNS Configuration (Essential First Step) Configure your domain’s DNS records at your registrar or DNS hosting provider. Overview Domain: thinhnam
| Record Type | Name/Host | Value/Target | TTL (Recommended) | |-------------|-----------|--------------|-------------------| | | @ (root) | YOUR_SERVER_IPv4 | 300-3600 | | AAAA | @ (root) | YOUR_SERVER_IPv6 (if available) | 300-3600 | | A | www | YOUR_SERVER_IPv4 | 300-3600 | | CNAME | * (wildcard, optional) | thinhnam.net | 3600 | | TXT | @ | v=spf1 mx ~all (basic SPF) | 3600 | | TXT | _dmarc | v=DMARC1; p=none; rua=mailto:dmarc@thinhnam.net | 3600 |