muryshev's picture
fix
d248375
raw
history blame contribute delete
394 Bytes
#!/bin/sh
set -e
# Создаём временные директории в /tmp
mkdir -p /tmp/nginx/client_temp \
/tmp/nginx/proxy_temp \
/tmp/nginx/fastcgi_temp \
/tmp/nginx/uwsgi_temp \
/tmp/nginx/scgi_temp \
/tmp/nginx/run
# Устанавливаем права
chmod -R 755 /tmp/nginx
# Запускаем Nginx
exec nginx -g "daemon off;"