Skip to content

Instantly share code, notes, and snippets.

View mshafiee's full-sized avatar

Mohammad Shafiee mshafiee

View GitHub Profile
@mshafiee
mshafiee / JetBrains.sh
Last active June 10, 2016 11:26
Install JetBrains Hub + YouTrack + UpSource + Nginx On Raw Ubuntu
#!/bin/bash
apt-get install mc htop git unzip wget curl -y
echo
echo "====================================================="
echo " WELCOME"
echo "====================================================="
echo
echo "Hub"
HTTP proxy
This example overrides the default docker.service file.
If you are behind an HTTP proxy server, for example in corporate settings, you will need to add this configuration in the Docker systemd service file.
Create a systemd drop-in directory for the docker service:
sudo mkdir /etc/systemd/system/docker.service.d
Create a file called /etc/systemd/system/docker.service.d/http-proxy.conf that adds the HTTP_PROXY environment variable:
sudo docker rm $(sudo docker ps -a -q) -f
Let's Encrypt:
sudo apt install git bc nginx
sudo git clone https://github.com/certbot/certbot.git /opt/letsencrypt
Automatic renewal:
sudo crontab -e
30 2 * * 1 /opt/letsencrypt/letsencrypt-auto renew >> /var/log/le-renew.log
35 2 * * 1 /etc/init.d/nginx reload
To sign certificates, the Let's Encrypt API needs to verify that you own the domain for the certificate.
sudo apt-get install mysql-server
sudo mysql_secure_installation
CREATE DATABASE mail;
GRANT SELECT ON mail.* TO 'mail'@'localhost' IDENTIFIED BY 'mailpassword';
FLUSH PRIVILEGES;
USE mail;
/*
Mohammad Shafiee
Parsian Business Accelerator
www.parsian.ac
muhammad.shafiee-at-gmail.com
*/
package data
import (
<?xml version="1.0" encoding="UTF-8"?>
<zabbix_export>
<date>2017-02-16T10:30:20Z</date>
<graphs>
<graph>
<graph_items>
<graph_item>
<calc_fnc>2</calc_fnc>
<color>157419</color>
<drawtype>1</drawtype>
@mshafiee
mshafiee / gitlab_ldap_settings.yml
Last active September 7, 2018 11:56
Setting up Gitlab LDAP authentication to Zimbra
main: # 'main' is the GitLab 'provider ID' of this LDAP server
label: 'Zimbra LDAP'
host: 'ldap.zimbra.com'
port: 389
uid: 'uid'
method: 'plain' # "tls" or "ssl" or "plain"
bind_dn: 'uid=zimbra,cn=admins,cn=zimbra'
password: 'PASSWORD'
active_directory: false
allow_username_or_email_login: true
Something like this:
+----------+ +-----------+
| |+----SSH+-->| |
| A | | B |
|+--------+| | |
Internet <-++-+PROXY<++<SSH Tunnel--+ |
|+--------+| | |
+----------+ +-----------+
[global]
; Override default pid file
pid = /run/php-fpm.pid
; Avoid logs being sent to syslog
error_log = /proc/self/fd/2
[www]
; Access from webserver container is via network, not socket file
listen = [::]:9000