7 lines
171 B
Bash
Executable file
7 lines
171 B
Bash
Executable file
#!/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
|