9 lines
190 B
Bash
Executable File
9 lines
190 B
Bash
Executable File
#!/bin/bash
|
|
|
|
## #ddev-generated
|
|
## Description: Reload config for nginx and php-fpm inside web container
|
|
## Usage: restart-nginx
|
|
## Example: "ddev restart-nginx"
|
|
|
|
killall -HUP nginx php-fpm
|