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
| localhost { | |
| tls internal | |
| reverse_proxy wordpress:80 { | |
| header_up Host {host} | |
| header_up X-Real-IP {remote_host} | |
| header_up X-Forwarded-For {remote_host} | |
| header_up X-Forwarded-Proto {scheme} | |
| } | |
| } |
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
| BINARY_NAME=$(shell basename $(CURDIR)) | |
| BINARY_PATH=./bin/${BINARY_NAME} | |
| GOCMD=go | |
| GREEN := $(shell tput -Txterm setaf 2) | |
| YELLOW := $(shell tput -Txterm setaf 3) | |
| WHITE := $(shell tput -Txterm setaf 7) | |
| CYAN := $(shell tput -Txterm setaf 6) | |
| RESET := $(shell tput -Txterm sgr0) |