8 lines
171 B
Text
8 lines
171 B
Text
|
#!/bin/bash
|
||
|
|
||
|
## Description: Reload config for nginx and php-fpm inside web container
|
||
|
## Usage: restart-nginx
|
||
|
## Example: "ddev restart-nginx"
|
||
|
|
||
|
killall -HUP nginx php-fpm
|