18 lines
331 B
Bash
18 lines
331 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
echo "=== NGINX Docker 权限初始化 ==="
|
|
|
|
# 设置权限
|
|
chmod -R 0444 /etc/nginx/conf.c
|
|
chmod 0444 /etc/nginx/conf.d/default.conf
|
|
chmod -R 0755 /etc/nginx/sites-enabled
|
|
|
|
|
|
# 创建日志目录
|
|
mkdir -p /var/log/nginx
|
|
|
|
echo "=== NGINX Docker 权限初始化完成 ==="
|
|
|
|
# 执行原有的启动命令
|
|
exec "$@" |