Category: Setup
-
Renew LetsEncrypt in Traefik
I’d setup Traefik to use LetsEncrypt, but due to the scarey words around rate limits etc, I felt it sensible to use the staging LetsEncrypt servers, rather than the production ones – basically I wasn’t sure how many changes I’d have to make as it has been a while since I played with any of…
-
Traefik Log Rotation
An explanation of how to set up Traefik Log Rotation. This covers both the access log AND the traefik log. I initially setup simple log rotation using the standard logrotate package i have installed for everything else. I implemented this by following this page (there are others about) but this covered my scenario the best…
-
Configure Microsoft Live Writer to work with Drupal
Hey! I’ve managed to configure Microsoft Live Writer to work with my Drupal install (see this URL). I had a minor issue configuring Microsoft Live Writer, where I couldn’t login as my non-administration user. Initially, I worked that that returning the edit privilege in Drupal “Authenticated Users” made it work. Since then I had a…
-
Persisting Bering changes locally
So I decided to add an user wolagent and put the script into his home directory. The question is how to backup this user. Simply using the ‘s’ – command from the Bering 3.x – menu doesn’t backup the user and his homedir. In short, there seemed to be no way to persist this Bering…
-
Update Tripwire policy
It’s pretty simple really. Just run this: sudo twadmin -m p > twpol.txt
-
Update Tripwire
OK, only waited a few months before adding this! I’d recommend not doing this as root, as if you do, the root directory modification time will change as you modify twpol.txt. Also twpol.txt will change as you modify it. All of this means you’ll have to run 1-3 before you can run 4. And tripwire…
-
Configure Tripwire on Debian
I have finally gotten around to configure the Tripwire setup on my Debian installation, after having it bleat at me for the last 3 years! I found details on http://articles.techrepublic.com.com/5100-10877_11-6034353.html which pointed me in the correct direction. My installation is Debian based, so it fitted the “no twinstall.sh” case shown most closely. I have had…
-
Compile an SRPM
Download SRPM into a directory of choice. Generally files out to go into: /usr/src/redhat/SRPMS Then run: rpm –rebuild <file>-<version>.src.rpm This will then build the new RPM. Everything will then happen automatically, and the newly built RPMs will go here: /usr/src/redhat/RPM/<cpu-type> If the configuration file needs to be changed then run: rpm -i <file>-<version>.src.rpm The spec…
-
Using drush with drupal
Using drush has been remarkably simple. I downloaded it as instructed on their site, and it almost works straight away. It was annoying to keep having to tell drush the site to use with the -l flag though, so I have configured it for my needs. I did this by making a .drush directory, and…
-
Configuring GIT
First up, I found most of my information on this here: Seth Robertson – Git On The Web The one thing that I didn’t realise initially is that you can’t use the gitweb URL to do clones etc.I spent ages trying to do this, until I found Seth’s page. It explains things in a very…