server_configuration

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
server_configuration [2025/03/31 09:40] – [Hosting Provider] davidserver_configuration [2025/04/02 09:56] (current) – [Basic Configuration] david
Line 142: Line 142:
 ===== New Environment ===== ===== New Environment =====
 ==== Create New Droplet ==== ==== Create New Droplet ====
 +
 +=== preconfigured droplet ===
  
 Saving time (haha) by using a WordPress preconfigured droplet: Saving time (haha) by using a WordPress preconfigured droplet:
Line 147: Line 149:
   * Install & configure: The WordPress One-Click Quickstart guide: https://do.co/34TfYn8#start   * Install & configure: The WordPress One-Click Quickstart guide: https://do.co/34TfYn8#start
  
 +=== Build from scratch ===
 +
 +  * https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-on-ubuntu-22-04-with-a-lamp-stack
 +  * https://www.digitalocean.com/community/tutorials/initial-server-setup-with-ubuntu
 +  * https://www.digitalocean.com/community/tutorials/how-to-install-lamp-stack-on-ubuntu
 ==== Basic Configuration ==== ==== Basic Configuration ====
 As root As root
Line 161: Line 168:
 sudo apt-get update && sudo apt-get upgrade -y sudo apt-get update && sudo apt-get upgrade -y
 </code> </code>
 +
 +<code bash>
 +# SSH Access - once user access is sorted
 +grep PermitRootLogin /etc/ssh/sshd_config
 +
 +sudo vi /etc/ssh/sshd_config
 +
 +# PermitRootLogin no
 +</code>
 +
  
 ==== SFTP ==== ==== SFTP ====
Line 174: Line 191:
   * Ubuntu Documentation: [[https://ubuntu.com/server/docs/security-firewall|Ubuntu firewall]]   * Ubuntu Documentation: [[https://ubuntu.com/server/docs/security-firewall|Ubuntu firewall]]
  
 +==== Postfix (email) ====
 +Mostly check notes under [[server_configuration:email|Mail Server]]
 +
 +Migrate Old mail data (after completing step 3 from the guide [[https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-postfix-on-ubuntu-20-04#step-3-installing-the-mail-client-and-initializing-the-maildir-structure|Step 3 — Installing the Mail Client and Initializing the Maildir Structure]])
 +<code bash>
 +################################################################################
 +# Email/postfix
 +################################################################################
 +cd ~/
 +
 +sudo cp -R /mnt/volume_lon1_01/david/Maildir/ ~/.
 +sudo cp -R /mnt/volume_lon1_01/david/Mail ~/.
 +
 +sudo cp -R /mnt/volume_lon1_01/david/mbox ~/.
 +sudo cp -R /mnt/volume_lon1_01/david/sent ~/.
 +
 +sudo chown -R david:david ~/.
 +
 +sudo apt-get install postfix
 +
 +"Internet Site" -> roman-halliday.com
 +
 +sudo ufw allow Postfix
 +</code>
 ==== Configure Apache & WordPress ==== ==== Configure Apache & WordPress ====
  
  • server_configuration.1743414000.txt.gz
  • Last modified: 2025/03/31 09:40
  • by david