Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
| deb_debris [2020/10/20 15:32] β [Finca LaDichium β DEBRiS Chrome] JΓΊne Park | deb_debris [2025/07/28 04:31] (current) β [Nginx Reverse proxy] JΓΊne Park | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| < | < | ||
| * {{fa> | * {{fa> | ||
| - | * [[:rpi_common|β General Things on Raspbian]]Β | + | * [[rpi_common|β General Things on Raspbian]]Β |
| - | * [[:rpi_autism|Media Ditorium β AUTiSM Rainbow]]Β | + | * [[rpi_nimbus|ππ’ππππ πππΉππππ]]Β |
| - | * [[:rpi_epigen|Private Cellarium β EPiGEN Crystal]]Β | + | * [[debian_common|β General info on Debian Linux]]Β |
| - | * [[:rpi_nimbus|Webius Officium β NiMBUS deBlanc]]Β | + | * [[deb_cicada|ππ’ππππ πππ©π π₯π¦π]]Β |
| - | * [[: | + | * [[deb_mutism|ππππ’ππ πππππ¦π]] Β |
| - | * [[:deb_mutism|Opus Imperium β MUTiSM Magnum]]Β | + | * [[deb_gilead|ππ’ππππ πΈπ£ππππ₯π]] Β |
| - | * [[:deb_gilead|Actu Periculum β GiLEAD Argenta]]Β | + | * [[deb_symbio|πππππ’π βπ πππ₯π¦π€]]Β |
| - | * [[:deb_debris|Finca LaDichium β DEBRiS Chrome]] | + | * [[deb_tardis|πππππ’π ππ‘ππ₯ππ¦π]] |
| * {{fa> | * {{fa> | ||
| * [[: | * [[: | ||
| - | * [[: | + | * [[PC_MESONiSM|ππππππ’ππ]] Β |
| - | * [[: | + | * [[PC_MESONiST|ππππππ’ππ]] |
| - | * [[: | + | |
| - | * [[: | + | |
| * {{fa> | * {{fa> | ||
| * [[: | * [[: | ||
| - | * [[: | + | * [[CELL_EPiCON|πππ’πππ π½π]] Β |
| - | * [[: | + | * [[CELL_EPiMER|πππ’πππ π‘]] Β |
| - | * [[: | + | * [[CELL_EPiLUX|πππ’πππ π]] |
| - | * [[: | + | * [[CELL_EPiTAP|πππ’πππ ππ]] Β |
| - | * [[: | + | * [[CELL_EPiETA|πππ’πππ π]] |
| - | * [[: | + | |
| </ | </ | ||
| - | |||
| ===== Finca LaDichium β DEBRiS Chrome ===== | ===== Finca LaDichium β DEBRiS Chrome ===== | ||
| Line 48: | Line 44: | ||
| <code ini> | <code ini> | ||
| - | Mounted on | + | Mounted on Type Size Used Avail Use%Β |
| - | / ext4 29G 11G 16G 42%Β | + | / ext4 20G 7.9G 11G |
| - | /home ext4 916G | + | /boot ext4 974M 253M 655M 28%Β |
| + | /home ext4 916G | ||
| </ | </ | ||
| Line 61: | Line 58: | ||
| ==== οΌWork logs ==== | ==== οΌWork logs ==== | ||
| + | * System Upgrade '' | ||
| + | * Attach Ubuntu Pro subscription < | ||
| + | * Upgrade '' | ||
| + | * Upgrade '' | ||
| * Fresh installation for Ubuntu Server 20.04 '' | * Fresh installation for Ubuntu Server 20.04 '' | ||
| * Upgrade '' | * Upgrade '' | ||
| Line 147: | Line 148: | ||
| ---- | ---- | ||
| + | |||
| + | |||
| + | ==== 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 ===== | ||
| + | |||
| + | === Disable restarting Nginx service === | ||
| + | <text type=" | ||
| + | |||
| + | <text type=" | ||
| + | |||
| + | <code nginx> | ||
| + | nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use) | ||
| + | nginx: [emerg] still could not bind() | ||
| + | </ | ||
| + | |||
| + | <text type=" | ||
| + | |||
| + | <code bash> | ||
| + | sudo fuser -k 443/tcp | ||
| + | sudo service nginx restart | ||
| + | </ | ||
| + | |||
| + | ---- | ||