Posts

Let's Encrypt/ACME client and library written in Go

go-acme/lego: Let's Encrypt/ACME client and library written in Go (github.com)

How to change default port for GitLab

As suggested on https://github.com/gitlabhq/gitlabhq/issues/6581  you can configure port on below file. Change port to 81 (You can choose your own) at port: near by production:$base >> gitlab: for file /opt/gitlab/embedded/service/gitlab-rails/config/gitlab.yml Change your host address if you like to use different from your ip address or localhost Change server port to 81 in file "/opt/gitlab/embedded/conf/nginx.conf" Restart gitlab using command "sudo gitlab-ctl restart". After applying all above changes still my nginx was running on port 80 only and not sure why also reconfiguring gitlab reset may all change on gitlab.yml files. Finally, file "/etc/gitlab/gitlab.rb" make this work for me.  Open "/etc/gitlab/gitlab.rb" to text editor where currently I have external_url 'http://myipaddress/' as text. I just change to  external_url 'http://gitlab.com.local:81/' then reconfigure using comm...

Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP)

Secure & Modern All-in-One Mail Server (IMAP, JMAP, SMTP) https://github.com/stalwartlabs/mail-server

Preserve bash history in multiple terminal windows

Add the following to your  ~/.bashrc : # Avoid duplicates HISTCONTROL=ignoredups:erasedups # When the shell exits, append to the history file instead of overwriting it shopt -s histappend # After each command, append to the history file and reread it PROMPT_COMMAND= " ${PROMPT_COMMAND:+$PROMPT_COMMAND$'\n'} history -a; history -c; history -r"

Open source Zapier alternative

https://automatisch.io/?ref=openalternative

Docker "ERROR: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network"

Docker may be at its maximum of created networks. The command  docker network prune  can be used to remove all networks not used by at least one container. docker network ls Remove unused docker network

Maven Lifecycle

https://www.scaler.com/topics/maven-lifecycle/