This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream api_node_js { | |
server 127.0.0.1:8080; | |
} | |
server { | |
listen 80 default_server; | |
listen [::]:80 default_server ipv6only=on; | |
root /var/www/my-kickass-domain/public_html; | |
index index.html index.htm; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
ext { | |
springBootVersion = '2.0.1.RELEASE' | |
ciBuild = System.getenv()['CI'] ? true : false | |
jenkinsCI = System.getenv()['JENKINS_URL'] ? true : false | |
gitlabCI = System.getenv()['GITLAB_CI'] ? true : false | |
intranetCI = jenkinsCI || gitlabCI | |
nexusUrl = "http://10.161.92.100:8081/nexus" | |
} | |
repositories { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Force push changes to the remote repository after "git commit --amend", "git rebase" or similar | |
# | |
# !!! WARNING: YOU ARE REWRITING THE HISTORY, DO IT ONLY IF YOU'RE THE ONLY COMMITER !!! | |
# | |
# See http://stackoverflow.com/questions/253055/how-do-i-push-amended-commit-to-the-remote-git-repo/253726#253726 | |
git push origin +master:master |