-
Published Answer
I saw some possible solutions in a forum at Github, so I credit [this thread.](https://github.com/gitlabhq/gitlabhq/issues/6104…
•
By
marmot7
-
Published Question
In Ghost's preview the inlinecode looks fine but when I publish the blog post and load in Safari or Chrome, it shows up as plain text. Here's the post: https://linuxhowto.tech/managing-users-and-groups/
Adding new use...
Accepted Answer:
@marmot7
So for example, the section called "Useradd examples", the first line has a <code>-block with the following useradd -c "Comment here" sarah -s /bin/bash, but there's just not any CSS making the background gr...
1
•
•
By
marmot7
Ghost
Nginx
CentOS
-
Published Question
I'm using Ghost on CentOS to host a blog, which is working great so far. The only thing that's strange is that whenever I restart the Droplet the blog reverts back to an older theme, any logo or cover image that was t...
2
•
•
By
marmot7
Ghost
CentOS
-
Published Answer
I think the first step might be to take a look at the tutorials, searching for the relevant, then settle on the distribution you wa…
•
By
marmot7
-
Published Answer
Of course, that worked! Thank you.
•
By
marmot7
-
Published Question
I've made it successfully through most of the instructions to install Graylog on Centos 7 (https://www.digitalocean.com/community/tutorials/how-to-install-graylog-1-x-on-centos-7) but when I get to this step the brows...
1
•
•
By
marmot7
Logging
CentOS
-
Published Answer
Here’s what ended up working
$ cd /var/www/ghost && npm install –production
$ npm start –production
I want to make sure this…
•
By
marmot7
-
Published Question
I setup encryption for my example.com that works for https://example.com but does not work for https://www.example.com
I'm going to try to troubleshoot this but if anyone has any thoughts on the likely cause of this, ...
Accepted Answer:
Are you using LetsEncrypt for the certificate? If yes, then you need to create the certificate for www.example.com as well. And you need to reference that certificate in your Nginx configuration related to where the w...
1
•
•
By
marmot7
Let's Encrypt
CentOS
-
Published Answer
It could also be a DNS issue. Could you post what the zone file for example.com as I suspect the problem might have to do with A re…
•
By
marmot7
-
Published Question
My server has to domains hosted:
One I'm using for a blog with Ghost on Nginx.
One just an ordinary site with HTML and CSS files, etc.
Whenever I reboot my droplet, it comes back with this error on the Nginx/Ghost sit...
Accepted Answer:
Have a look in the log file - if you haven't changed that, it should be in
/var/log/nginx/error.log
2
•
•
By
marmot7
Miscellaneous
CentOS
-
Published Answer
@jtittleI think I marked one of your answers as accepted answer. I really, really appreciate your help. Thank you. It’s been a bit …
•
By
marmot7
-
Published Answer
I went ahead and restarted the droplet but somehow made the problem change to this:
502 Bad Gateway
LOL. From sort of worki…
•
By
marmot7
-
Published Question
When I go to my new blog using https://linuxhowto.tech/ it works just fine. When I click on home at the top it works fine.
When I click on the name of the blog and so on it goes to http://localhost:2368/
I can't see w...
Accepted Answer:
@marmot7
The first thing I would recommend changing is this server block:
server {
listen 80;
server_name linuxhowto.tech;
location / {
return 301 https://$server_name$request_uri;
}
}
When...
4
•
•
By
marmot7
Ghost
CentOS
-
Published Answer
I think perhaps the most important point you made was nuts and bolts that it’s all too easy to overlook:
As a general rule of th…
•
By
marmot7
-
Published Question
I was wondering what the most important things are to secure a Linux Server? I happen to be using Centos as the moment but I'd imagine the answer for Centos would more or less fit other distros other than the details ...
3
•
•
By
marmot7
Security
CentOS
-
Published Question
I was wondering if anyone has suggestions on the best way to host a blog? I've used WP in the past and that would probably do the job fine but it'd be more interested to try something else. I don't have a lot of crite...
Accepted Answer:
Neil,
Check out Hugo (https://gohugo.io). It's designed to generate blog-style sites in pure HTML using Markdown for the content. You can use Nginx & Let's Encrypt to run a secure web server hosting those HTML docum...
3
•
•
By
marmot7
CMS
Open Source
CentOS
Ubuntu 16.04