Skip to content

Instantly share code, notes, and snippets.

View junlapong's full-sized avatar
🏚️
Work from home

Junlapong L. junlapong

🏚️
Work from home
  • Ratchaburi, Thailand
View GitHub Profile
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 27, 2026 15:58
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@mikkelkrogsholm
mikkelkrogsholm / docker-compose.yml
Last active January 20, 2020 04:11 — forked from pantsel/docker-compose.yml
example docker-compose.yml for kong, postgres and konga
version: "3"
networks:
kong-net:
driver: bridge
services:
#######################################
# Postgres: The database used by Kong
@narate
narate / srcache.conf
Created May 2, 2022 08:11
The srcache-nginx-module example config for WordPress with php-fpm
server {
listen 80;
server_name _;
root /var/www/html;
index index.php;
set $skip_cache 0;
# POST requests and urls with a query string should always go to PHP