Назад | Перейти на главную страницу

Google Cloud Storage moun + пользователь nginx

Я могу подключить свое облачное хранилище Google с gcsfuse но мне нужно, чтобы nginx писал в нем. Как я могу это сделать? Я добавил nginx в группу монтирующих пользователей и ничего. Наверное, потому что у монтировки 755 на всех папках? Любая идея будет оценена по достоинству.

Берт

По умолчанию доступ к ней имеет только пользователь, смонтировавший файловую систему. Согласно документация вы можете использовать "-o allow_other", чтобы разрешить другим пользователям доступ к файловой системе.

gcsfuse также позволяет напрямую устанавливать владельцев inodes с помощью флагов --uid и --gid.

gcsfuse --help
NAME:
   gcsfuse - Mount a GCS bucket locally

USAGE:
   gcsfuse [global options] bucket mountpoint

VERSION:
   0.21.0 (Go version go1.8)

GLOBAL OPTIONS:
   --foreground                 Stay in the foreground after mounting.
   -o value                     Additional system-specific mount options. Be careful!
   --dir-mode value             Permissions bits for directories, in octal. (default: 755)
   --file-mode value            Permission bits for files, in octal. (default: 644)
   --uid value                  UID owner of all inodes. (default: -1)
   --gid value                  GID owner of all inodes. (default: -1)
   --implicit-dirs              Implicitly define directories based on content. Seedocs/semantics.md
   --only-dir value             Mount only the given directory, relative to the bucket root.
   --key-file value             Absolute path to JSON key file for use with GCS. (default: none, Google application default credentials used)
   --limit-bytes-per-sec value  Bandwidth limit for reading data, measured over a 30-second window. (use -1 for no limit) (default: -1)
   --limit-ops-per-sec value    Operations per second limit, measured over a 30-second window (use -1 for no limit) (default: 5)
   --stat-cache-ttl value       How long to cache StatObject results and inode attributes. (default: 1m0s)
   --type-cache-ttl value       How long to cache name -> file/dir mappings in directory inodes. (default: 1m0s)
   --temp-dir value             Absolute path to temporary directory for local GCS object copies. (default: system default, likely /tmp)
   --debug_fuse                 Enable fuse-related debugging output.
   --debug_gcs                  Print GCS request and timing information.
   --debug_http                 Dump HTTP requests and responses to/from GCS.
   --debug_invariants           Panic when internal invariants are violated.
   --help, -h                   show help
   --version, -v                print the version

Пример: gcsfuse --uid = 997 --gid = 995 --file-mode = 755 --dir-mode = 755 my-project-3153481321684321681.appspot.com / media / gcloud