Score:-1

Simple solution for PDF storage

bd flag

I'm trying to make a PDF storage that can be accessed by anyone who has the URL to the specific PDF file. Basically I want to be able to hand out just a URL to a person and that leads to the PDF file. I'm looking for simple and efficient solution to this. I have 2 VPS server each running on Ubuntu.

(Each PDF file needs to be accessed by URL)

Score:3
br flag

Object storage solutions such as Amazon S3, Backblaze B2, etc.

Score:1
cn flag

You just want to serve static files. You need a server like apache2 or nginx example vhost for apache:

<VirtualHost *:80>
    ServerName myservername.website
    DocumentRoot /var/www/
    RewriteCond %{REQUEST_URI} !/static/
</VirtualHost>

and then you just need to place your PDF files into /var/www/static dir

mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.