
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
ghost-storage-rokka
Advanced tools
A rokka Ghost storage adapter.
yarn add rokka@2
cd core/server/adapters/storage
git checkout https://github.com/rokka-io/ghost-adapter-rokka.git rokka
yarn add ghost-storage-rokka
mv node_modules/ghost-storage-rokka core/server/adapters/storage
Here's an example of using this adapter with a containerized Ghost:
FROM ghost:3-alpine as rokka
WORKDIR $GHOST_INSTALL/current
RUN su-exec node yarn add ghost-storage-rokka@2
FROM ghost:3-alpine
COPY --chown=node:node --from=rokka $GHOST_INSTALL/current/node_modules $GHOST_INSTALL/current/node_modules
COPY --chown=node:node --from=rokka $GHOST_INSTALL/current/node_modules/ghost-storage-rokka $GHOST_INSTALL/current/core/server/adapters/storage/ghost-storage-rokka
RUN set -ex; \
su-exec node ghost config storage.active ghost-storage-rokka; \
su-exec node ghost config storage.ghost-storage-rokka.key ABCEHJFZ; \
su-exec node ghost config storage.ghost-storage-rokka.organization yourorganization; \
Here, we use the Ghost CLI to set some pre-defined values.
Check out configuration.json.dist for a complete example.
key
and organization
with your values.defaultStack = somestack
you can define some default rokka stack for the important imagesTo enable debug logs, set the following environment variable:
DEBUG=ghost:ghost:ghost-storage-rokka
FAQs
Unknown package
We found that ghost-storage-rokka demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.