Jump to content

robertzo

Members
  • Posts

    112
  • Joined

  • Last visited

  • Days Won

    3

robertzo last won the day on August 16 2021

robertzo had the most liked content!

Contact Methods

  • Website URL
    https://robertzou.com

Profile Information

  • Gender
    Male
  • Interests
    I love websites and building them.

Recent Profile Visitors

1,299 profile views

robertzo's Achievements

Explorer

Explorer (4/14)

  • One Year In Rare
  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. I know this is late, but for people who want to convert to static without a plugin. You can try out HTTRACK https://www.httrack.com/ which is an application that works on your computer to do this. You can also use something like Laragon (Windows recommended) or Local by Flywheel (Mac recommended, Linux, or Windows) to host your wordpress site locally and install something like Simply Static or Staatic on it.
  2. robertzo

    Why Plesk?

    If there is none, how did people upload files, manage databases, dns etc?
  3. robertzo

    Why Plesk?

    What did Lily run on before?
  4. robertzo

    Why Plesk?

    After your cPanel licenses got revoked, you chose to migrate to Plesk. Just out of curiosity, why? Why Plesk and not something like Directadmin, Interworx, or Cyberpanel?
  5. Thanks that is exactly what I want. BTW when you say it will upgrade to a vps, does that mean the cPanel account would be deleted and everything would be unmanaged?
  6. Just a quick question. The new Morty server seems very promising. However I am wondering how much would it cost to scale and is it auto-scaling (scale and charge more automatically)?
  7. robertzo

    Read me

    I don't think it will affect speed that much. However I think the UI in Plesk is better than cPanel. Look at the demos for more info.
  8. Yeah that is another one that I forgot to add. Make sure to restart the ssh daemon with: And use this command to login
  9. 1. Use SSH Key Authentication: For Openssh (Mac, Linux, Windows): Run this command to generate an SSH key using the strongest key size (leave everything on default. You can enter a Passphrase, which is the password you would need to enter to connect to the server). ssh-keygen -t ed25519 Then run this command to upload it to your SSH server. ssh-copy-id -i /root/.ssh/id_ed25519.pub root@youripaddress Make sure to replace youripaddress with your IP address. Bonus: If you want to log into the server from another computer but don't want to generate another key (and do all those steps), just copy the private key from your main computer to your other computer and run this command to login: cd Folder ssh -i .\ssh.key root@youripaddress Make sure to replace Folder with the folder your uploaded the SSH Private Key, ssh.key with the private key name, and youripaddress with your IP address. For puTTY and Filezilla (Windows): Go to puTTY Keygen and generate an SSH key. Make sure to select ED25519 as it is the strongest key size. You can also enter a passphrase (a password you need to enter every time you need to log into the SSH server) if you want. Then open up FileZilla and connect to your server (Host is youripaddress, port is 22, username is root, and password is your password). Upload the Public Key to the /root/.ssh folder. Then if you want to connect to your server using SSH keys, just go to SSH < Auth and upload your private key and everything is set. 2. Disable Password Authentication: The reason why you went through all that trouble of setting up SSH keys is so that people cannot access your server with JUST a password (they would need that strong SSH key and maybe even another password if you created a passphrase). To do that run these commands on the REMOTE SERVER: nano /etc/ssh/sshd_config You can vim if you want. Then uncomment the PasswordAuthentication line (remove the pound/number symbol) and change the yes to no. Uncomment the PermitEmptyPasswords line and change it to no (if it is yes). And also change the yes in the UsePAM line to no. Then restart the SSH daemon with this command: systemctl restart sshd 3. Disable Root User Login (Use Your Own User): The default username is root and every hacker knows this. You want to create a new user and disallow root user login. First create a new user by running this command: sudo adduser yourusername Make sure to replace yourusername with a compicanted easy to remember name (Maybe like your friends middle name). Follow the instructions in the terminal. Then exit the SSH session and test if everything works by running this logging into the server but using the username@youripaddress. Then login to your server and run this command: nano /etc/ssh/sshd_config Then change PermitRootLogin to no. 4. Change SSH Port: @balloons Posted below how to do this. 4. Check How Secure You SSH Login is Go to https://ssh-audit.com and enter you IP address and port and they wil tell you how secure your server is and tips to improve the score.
  10. Oh because when I used it it says server exhausted so httrack is the only option for me.
  11. Also if you think Hugo is a little complicated, you can use Forestry.io (free for up to 3 sites) to create content and sync it automatically to Hugo (forestry.io is a headless CMS).
  12. Maybe you can Try Grav. I have heard a lot of good things about them.
  13. Remember the Wp2Static plugin. I found out that it uses a lot of resources. Here is a tutorial that I have tested and made sure it works (I am posting a link to a comment I made on a fairly old topic. I noticed that because it is so old, nobody saw it): https://www.helionet.org/index/topic/43689-solved-suspended-google12/?do=findComment&comment=192921
×
×
  • Create New...