NosDAV Server is a simple and secure file server implemented using Node.js, allowing clients to store and retrieve files over HTTPS. The server validates Nostr events in the authorization header and ensures that only authorized users can store and access files.
✓ HTTP(S) server
✓ PUT and GET requests for uploading and downloading files
✓ Nostr event validation using nostr-tools and NIP-98
✓ CORS handling
✓ Basic file validation
✓ Proper response headers
Clone the repository and install:
git clone https://github.com/nosdav/server.git && cd server
npm install
To use this server using, you need a valid private key (privkey.pem) and a certificate (fullchain.pem) for HTTPS. Place these files in the project directory or update the file paths in the options object when creating the server. An example way to generate these is below.
openssl req -outform PEM -keyform PEM -new -x509 -sha256 -newkey rsa:2048 -nodes -keyout ./privkey.pem -days 365 -out ./fullchain.pem
Start the server:
node server.js --key private-key.pem --cert fullchain.pem --port your_port
Options
-p or --port: The port on which the server should listen. Default: 3118
-r or --root: The root directory for file storage. Default: 'data'
-s or --https: A flag to enable HTTPS. Default: true (HTTPS)
-m or --mode: singleuser or multiuser. Default: multiuser
-k or --key: The path to the private key file. Default: './privkey.pem' (optional)
-c or --cert: The path to the certificate file. Default: './fullchain.pem' (optional)
-o or --owners: pubkeys (csv) of owners in singleuser mode (optional)
The server will listen for incoming requests at https://localhost:3118 if port is not set
In multiuser mode the pubkey will be used to create per user directories beneath the root directory.
import http from 'http';
import { createRequestHandler } from 'nostr-server-library';
const port = 3000;
const rootDir = './data'; // The root directory where all files will be stored
const mode = 'singleuser'; // The server mode: 'singleuser' or 'multiuser'
const owners = ['public_key1','public_key2']; // array of public keys
const requestHandler = createRequestHandler(rootDir, mode, owners);
const server = http.createServer(requestHandler);
server.listen(port, () => {
console.log(`Server running at http://localhost:${port}/`);
});
Upload a file for the given Nostr.
Header: Authorization: Nostr base64(NostrEvent)
{
"kind": 27235,
"created_at": "Math.floor(Date.now() / 1000)",
"tags": [["u", "path"]],
"content": ""
}
Signed with the pubkey of the user.
Content-Type can vary according to the file being uploaded.
Download a file by its name for a specific Nostr.
Where nostrid is the pubkey of the user, but only in multiuser mode
First, you need to build the Docker image for the server. Navigate to the root directory of the project, where the Dockerfile is located, and run the following command:
docker build -t nosdav .
Now that you have built the Docker image, you can run a container using that image. You can map the port and mount a volume to persist the data directory.
Use the -p flag to map the host port to the container port. In this case, we’ll map the host port 3118 to the container port 3118:
docker run -d -p 3118:3118 nosdav
To persist the data directory across container restarts or removals, you can use the –mount flag to create a volume and mount it to the container:
docker run -d -p 3118:3118 --mount type=bind,source=my-data,destination=/usr/src/app/data nosdav
Replace my-data with your preferred volume name.
Now your server is up and running with Docker. You can access it on your host machine at http://localhost:3118.
Feel free to create a pull request if you would like to contribute or suggest improvements to the project. Please follow the existing style and add comments for any changes you make.