See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| package main | |
| import ( | |
| "fmt" | |
| "reflect" | |
| ) | |
| type Foo struct { | |
| FirstName string `tag_name:"tag 1"` | |
| LastName string `tag_name:"tag 2"` |
| #!/bin/bash | |
| sysctl net.core.rmem_default=268435456 | |
| sysctl net.core.wmem_default=268435456 | |
| sysctl net.core.rmem_max=268435456 | |
| sysctl net.core.wmem_max=268435456 | |
| sysctl net.core.netdev_max_backlog=100000 | |
| sysctl "net.ipv4.tcp_rmem=4096 16384 134217728" | |
| sysctl "net.ipv4.tcp_wmem=4096 16384 134217728" | |
| sysctl "net.ipv4.tcp_mem=786432 1048576 268435456" |
$ brew install nginx
Setelah install jalankan nginx.
$ sudo nginx
Test apakah nginx sudah running, buka url http://localhost:8080.