Skip to content

Instantly share code, notes, and snippets.

View mikebarnhardt's full-sized avatar

Mike Barnhardt mikebarnhardt

  • 次元の狭間
View GitHub Profile
@mikebarnhardt
mikebarnhardt / rename-github-branch.md
Created January 2, 2018 14:30
Rename local and remote Github branch
  1. Rename your local branch. If you are on the branch you want to rename:
git branch -m new-name

If you are on a different branch:

@mikebarnhardt
mikebarnhardt / site.conf
Created January 22, 2016 16:34
Service Script for Node Apps
description "Site Name"
author "Your Name"
# Start service after everything loaded
start on (local-filesystems and net-device-up IFACE=eth0)
stop on shutdown
# Automatically restart service
respawn
respawn limit 3 15
@mikebarnhardt
mikebarnhardt / default.conf
Created January 22, 2016 16:41
Basic Nginx Config
server {
listen 80;
# Your server's IP
server_name 11.222.33.44;
# Uncomment to enable:
# access_log /var/log/nginx/log/host.access.log main;
location / {
@mikebarnhardt
mikebarnhardt / node-startup.service
Last active September 20, 2016 19:14
Systemd NodeJS startup
[Unit]
Description=NodeJS Startup
After=network.target
[Service]
ExecStart=/usr/bin/nodejs /var/www/repo/build/server
Environment=NODE_ENV=production
User=nodejs
Restart=on-failure