Skip to content

Instantly share code, notes, and snippets.

View taufiqpsumarna's full-sized avatar
🏠
Work From Home

Taufiq Permana taufiqpsumarna

🏠
Work From Home
View GitHub Profile
@taufiqpsumarna
taufiqpsumarna / gitlab-ci.yml
Last active July 6, 2022 03:43
Gitlab Simple CI/CD Deploy To SSH Serverr
image: ubuntu:latest
stages:
- deploy
deploy_prod:
stage: deploy
before_script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
- mkdir -p ~/.ssh
- eval $(ssh-agent -s)
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
@taufiqpsumarna
taufiqpsumarna / nginx.conf
Last active March 28, 2023 07:25
Setup Nginx Reverse Proxy
## Nginx Installation
sudo apt-get update
sudo apt-get install nginx
## Create nginx conf (/etc/nginx/sites-available/..)
### Config_option_2
server {
listen 80;
server_name example.com; #change app url
@taufiqpsumarna
taufiqpsumarna / Jenkinsfile
Last active March 28, 2023 07:25
Code snippet sonarqube with jenkinsfile
pipeline {
stages {
// Sonarqube Analysis
// Abort pipeline if QualityGate fail timeout 10 minutes
stage('SonarQube Analysis 🔬') {
environment {
scannerHome = tool 'SonarQubeScanner' //Make sure to replace SonarScanner with the name you gave to your SonarQube Scanner tool in Jenkins
}
steps {
withSonarQubeEnv('sonarqube') {