Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
deb_debris [2024/04/20 15:00] โ [Specification] Jรบne Park | deb_debris [2025/07/28 04:31] (current) โ [Nginx Reverse proxy] Jรบne Park | ||
---|---|---|---|
Line 45: | Line 45: | ||
<code ini> | <code ini> | ||
Mounted on Type Size Used Avail Use% | Mounted on Type Size Used Avail Use% | ||
- | / ext4 | + | / ext4 |
- | /boot ext4 974M | + | /boot ext4 974M |
- | /home ext4 916G | + | /home ext4 916G |
</ | </ | ||
Line 58: | Line 58: | ||
==== ๏ผWork logs ==== | ==== ๏ผWork logs ==== | ||
+ | * System Upgrade '' | ||
+ | * Attach Ubuntu Pro subscription < | ||
* Upgrade '' | * Upgrade '' | ||
* Upgrade '' | * Upgrade '' | ||
Line 147: | 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 ===== | ||