Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| deb_debris [2025/05/02 16:42] โ [๏ผWork logs] Jรบne Park | deb_debris [2026/09/23 20:14] (current) โ external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 58: | Line 58: | ||
| ==== ๏ผWork logs ==== | ==== ๏ผWork logs ==== | ||
| - | * System Upgrade '' | + | * System Upgrade '' |
| - | * Attach Ubuntu Pro subscription < | + | * Attach Ubuntu Pro subscription < |
| - | * Upgrade '' | + | * Upgrade '' |
| - | * Upgrade '' | + | * Upgrade '' |
| - | * Fresh installation for Ubuntu Server 20.04 '' | + | * Fresh installation for Ubuntu Server 20.04 '' |
| - | * Upgrade '' | + | * Upgrade '' |
| - | * Get certificates for '' | + | * Get certificates for '' |
| - | * Install '' | + | * Install '' |
| - | * Change '' | + | * Change '' |
| - | * Install '' | + | * Install '' |
| === ๏ผQue to do === | === ๏ผQue to do === | ||
| Line 149: | Line 149: | ||
| ---- | ---- | ||
| + | |||
| + | ==== Optimize Global SSL setting ==== | ||
| + | |||
| + | Edit ''/ | ||
| + | |||
| + | <code nginx> | ||
| + | http { | ||
| + | # ... existing configuration ... | ||
| + | | ||
| + | # Global SSL session cache (add this section) | ||
| + | ssl_session_cache | ||
| + | ssl_session_timeout | ||
| + | ssl_session_tickets | ||
| + | | ||
| + | # Optional: Global SSL protocols and ciphers | ||
| + | ssl_protocols | ||
| + | ssl_prefer_server_ciphers off; | ||
| + | | ||
| + | # ... rest of your http configuration ... | ||
| + | | ||
| + | # Include server blocks | ||
| + | include / | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | Edit each nginx configuration file in ''/ | ||
| + | |||
| + | <code nginx> | ||
| + | # Remove these lines from other server blocks: | ||
| + | ssl_session_cache | ||
| + | ssl_session_timeout | ||
| + | ssl_session_tickets | ||
| + | ssl_protocols | ||
| + | ssl_prefer_server_ciphers off; # if you made it global | ||
| + | </ | ||
| + | |||
| + | ---- | ||
| ===== Solved problems ===== | ===== Solved problems ===== | ||