Hosting PixivFE¶
PixivFE can be installed using various methods. This guide covers installation using Docker (recommended for production) and using a binary with a Caddy reverse proxy.
Note
PixivFE requires a Pixiv account token to access the API. Refer to the Obtaining the PIXIVFE_TOKEN
cookie guide for detailed instructions.
HTTPS required for user login and preferences
PixivFE sets cookies with the Secure
attribute. This means that cookies (and thus user login and preferences) will only be sent over HTTPS connections.
As such, your PixivFE deployment must be accessible over HTTPS for user preferences work properly. If you access PixivFE over HTTP, cookies will not be sent, and user preferences will not be saved.
Please ensure that your deployment is configured to use HTTPS. For Docker deployments, consider using a reverse proxy like Caddy or NGINX to handle HTTPS connections. For the binary deployment, Caddy can be configured to automatically obtain and manage TLS certificates.
Docker¶
Docker lets you run containerized applications. Containers are loosely isolated environments that are lightweight and contain everything needed to run the application, so there's no need to rely on what's installed on the host.
Docker images for PixivFE are available at Docker Hub, with support for multiple platforms: linux/arm/v7
, linux/arm64/v8
, and linux/amd64
.
Several Docker image tags are available to suit different needs:
latest
: The most recent stable release.next
: The latest development build from thev2
branch.- Tagged releases (e.g.,
v2.9
): Specific version releases for production use.
When using Docker commands, you can specify the desired tag. For example:
Bash | |
---|---|
Docker Compose¶
Warning
Deploying PixivFE using Docker Compose requires the Compose plugin to be installed. Follow these instructions on the Docker Docs on how to install it.
1. Setting up the repository¶
Clone the PixivFE repository and navigate to the directory:
Bash | |
---|---|
2. Configure environment variables¶
Copy .env.example
to .env
and configure the variables as needed. Refer to the Environment variables page for more information.
Note
Ensure you set PIXIVFE_HOST=0.0.0.0
in the .env
file.
This allows PixivFE to bind to all network interfaces inside the container, which is necessary for Docker's network management to function correctly. The network access restrictions will be handled by Docker itself, not within PixivFE.
3. Set token¶
Set the PIXIVFE_TOKEN
environment variable in your .env
file. This should be the value of the PHPSESSID
cookie from your Pixiv account. For detailed instructions on obtaining this token, refer to the Obtaining the PIXIVFE_TOKEN
cookie guide.
4. Compose!¶
Run docker compose up -d
to start PixivFE.
To view the container logs, run docker logs -f pixivfe
.
Docker CLI¶
1. Setting up the repository¶
Clone the PixivFE repository and navigate to the directory:
Bash | |
---|---|
2. Configure environment variables¶
Copy .env.example
to .env
and configure the variables as needed. Refer to the Environment variables page for more information.
Note
Ensure you set PIXIVFE_HOST=0.0.0.0
in the .env
file.
This allows PixivFE to bind to all network interfaces inside the container, which is necessary for Docker's network management to function correctly. The network access restrictions will be handled by Docker itself, not within PixivFE.
3. Deploying PixivFE¶
Run the following command to deploy PixivFE:
If you're planning to use a reverse proxy, modify the port binding to only listen on the localhost port (e.g., 127.0.0.1:8282:8282
). This ensures that PixivFE listens only on the localhost, making it accessible solely through the reverse proxy.
Binary¶
This setup uses Caddy as the reverse proxy. Caddy is a great alternative to NGINX because it is written in the Go programming language, making it more lightweight and efficient. Additionally, Caddy is easy to configure, providing a simple and straightforward way to set up a reverse proxy.
1. Setting up the repository¶
Clone the PixivFE repository and navigate to the directory:
Bash | |
---|---|
2. Configure environment variables¶
Copy .env.example
to .env
and configure the variables as needed. Refer to the Environment variables page for more information.
3. Building and running PixivFE¶
PixivFE provides a shell script named build.sh
to simplify the build and run process.
To build and run PixivFE, use the following commands:
Bash | |
---|---|
This will build the PixivFE binary and start it. It will be accessible at localhost:8282
.
4. Deploying Caddy¶
Install Caddy using your package manager.
In the PixivFE directory, create a file named Caddyfile
with the following content:
Replace example.com
with your domain and 8282
with the PixivFE port if you changed it.
Run caddy run
to start Caddy.
Updating¶
To update PixivFE to the latest version, follow the steps below that are relevant to your deployment method.
Docker¶
Docker Compose¶
-
Pull the latest Docker image and repository changes:
Bash -
Restart the container:
Bash
Docker CLI¶
-
Pull the latest Docker image and repository changes:
Bash -
Stop and remove the existing container:
Bash -
Restart the container:
Bash
Binary¶
-
Pull the latest changes from the repository:
Bash -
Rebuild and start PixivFE: