5 lines
61 B
Bash
5 lines
61 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cat /nginx.conf > /etc/nginx/nginx.conf
|
||
|
|
||
|
exec "$@"
|