deb_debris

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
deb_debris [2024/05/05 21:52] โ€“ [Specification] Jรบne Parkdeb_debris [2026/09/23 20:14] (current) โ€“ external edit 127.0.0.1
Line 45: Line 45:
 <code ini> <code ini>
 Mounted on Type  Size  Used Avail Use% Mounted on Type  Size  Used Avail Use%
-/          ext4   20G  8.0G   11G  44%+/          ext4   20G  7.9G   11G  43%
 /boot      ext4  974M  253M  655M  28% /boot      ext4  974M  253M  655M  28%
-/home      ext4  916G  283G  587G  33%+/home      ext4  916G  292G  578G  34%
 </code> </code>
  
Line 58: Line 58:
 ==== ๏ผ‹Work logs ====  ==== ๏ผ‹Work logs ==== 
  
-  * Upgrade ''php 8.2'' and purge ''php 7.4'', ''php 8.0'' and ''php 8.1'' <sub>  --- Updated on //2023/06/04 03:57// </sub>ย +  * System Upgrade ''**Ubuntu 24.04 noble numbat**''<sub>--- Updated on //2025/05/02 07:42//</sub>ย 
-  * Upgrade ''Ubuntu 22.04.1 LTS (Jammy Jellyfish)'' <sub>  --- Updated on //2022/09/09 17:40// </sub>ย +  * Attach Ubuntu Pro subscription <sub>--- Updated on //2024/05/21 17:41//</sub>ย 
-  * Fresh installation for Ubuntu Server 20.04 ''focal'' <sub>  --- Updated on //2020/10/12 20:44// </sub>ย +  * Upgrade ''php 8.2'' and purge ''php 7.4'', ''php 8.0'' and ''php 8.1'' <sub>--- Updated on //2023/06/04 03:57//</sub>ย 
-  * Upgrade ''mariadb 10.5'' <sub>  --- Updated on //2020/08/31 13:15// </sub>ย +  * Upgrade ''Ubuntu 22.04.1 LTS (Jammy Jellyfish)'' <sub>--- Updated on //2022/09/09 17:40//</sub>ย 
-  * Get certificates for ''sayah.kr'' <sub>  --- Updated on //2020/06/28 19:09// </sub>ย +  * Fresh installation for Ubuntu Server 20.04 ''focal'' <sub>--- Updated on //2020/10/12 20:44//</sub>ย 
-  * Install ''WordPress'' {{mdi>wordpress}} for ''sayah'' <sub>  --- Updated on //2020/06/28 19:07// </sub>ย +  * Upgrade ''mariadb 10.5'' <sub>--- Updated on //2020/08/31 13:15//</sub>ย 
-  * Change ''backup rsync'' to another partition <sub>  --- Updated on //2020/06/27 04:01// </sub>ย +  * Get certificates for ''sayah.kr'' <sub>--- Updated on //2020/06/28 19:09//</sub>ย 
-  * Install ''Nextcloud'' named ''cloud.ejestate.tk'' <sub>  --- Updated on //2020/03/29 22:22// </sub>+  * Install ''WordPress'' {{mdi>wordpress}} for ''sayah'' <sub>--- Updated on //2020/06/28 19:07//</sub>ย 
 +  * Change ''backup rsync'' to another partition <sub>--- Updated on //2020/06/27 04:01//</sub>ย 
 +  * Install ''Nextcloud'' named ''cloud.ejestate.tk'' <sub>--- Updated on //2020/03/29 22:22//</sub>
  
 === ๏ผ‹Que to do ===  === ๏ผ‹Que to do === 
Line 147: Line 149:
 ---- ----
  
 +
 +==== Optimize Global SSL setting ==== 
 +
 +Edit ''/etc/nginx/nginx.conf'' to apply global settings 
 +
 +<code nginx> 
 +http {
 +    # ... existing configuration ...
 +    
 +    # Global SSL session cache (add this section)
 +    ssl_session_cache     shared:SSL:50m;
 +    ssl_session_timeout   1d;
 +    ssl_session_tickets   off;
 +    
 +    # Optional: Global SSL protocols and ciphers
 +    ssl_protocols         TLSv1.2 TLSv1.3;
 +    ssl_prefer_server_ciphers off;
 +    
 +    # ... rest of your http configuration ...
 +    
 +    # Include server blocks
 +    include /etc/nginx/sites-enabled/*;
 +}
 +</code> 
 +
 +Edit each nginx configuration file in ''/etc/nginx/sites-available/*'' and eliminated following lines
 +
 +<code nginx> 
 +# Remove these lines from other server blocks:
 +ssl_session_cache     shared:SSL:20m;  # or any size
 +ssl_session_timeout   1d;              # or any timeout
 +ssl_session_tickets   off;             # or on
 +ssl_protocols         TLSv1.2 TLSv1.3; # if you made it global
 +ssl_prefer_server_ciphers off;         # if you made it global
 +</code> 
 +
 +---- 
 ===== Solved problems ===== ===== Solved problems =====
  
  • deb_debris.1714913574
  • Last modified: 2024/05/05 21:52
  • by Jรบne Park