1. Lift the 21 reply restriction until you can create a post, this just encourages spam replies. All I want to do is submit to the creative writing forum but I have to wait 5 days to do so? ... or if not, at least allow other forum members to endorse a new member to avoid the restriction.
2. Increase the attachment size to 1.5 - 2 MB so we can attach gifs!
3. Add a SSL certificate to the server for better forum/game security https://certbot.eff.org/
Adding a SSL to the server is as simple as:
Step 1: SSH into the server
Step 2: Install certbot
Step 2: Issue a new certificate
Step 3: Setup auto SSH renewal
Of course the server paths would be different, but you get the idea. Around 10min of work to add SSL.
2. Increase the attachment size to 1.5 - 2 MB so we can attach gifs!
3. Add a SSL certificate to the server for better forum/game security https://certbot.eff.org/
Adding a SSL to the server is as simple as:
Step 1: SSH into the server
Step 2: Install certbot
Code:
git clone https://github.com/certbot/certbot
Step 2: Issue a new certificate
Code:
certbot/certbot-auto certonly --webroot -w /srv/users/mnfclub/apps/mnfclub/public -d mnfclub.com,www.mnfclub.com
Step 3: Setup auto SSH renewal
Code:
sudo crontab -e
0 */12 * * * /home/mnfclub/certbot/certbot-auto renew
Of course the server paths would be different, but you get the idea. Around 10min of work to add SSL.