mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2025-09-26 21:01:15 +08:00
8 lines
228 B
Bash
8 lines
228 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Restrict php-fpm to local connection
|
|
go-replace --mode=line --regex \
|
|
-s '^[\s;]*listen[\s]*=' -r 'listen = 127.0.0.1:9000' \
|
|
--path=/opt/docker/etc/php/fpm/ \
|
|
--path-pattern='*.conf'
|