简体   繁体   中英

Implement HTTPS file server in C++ on Linux

I would like to implement a simple file server application on Linux that would allow logged in users to upload and download files.

This file server should work with a Django application that would handle the user login/file permissions and pass download/upload HTTPS requests to the C++ file server application.

Also, it should handle multiple requests from multiple users. What is the best way to do this? Should I use boost:asio or another library? Where should I start?

尝试cpp-netlib-受Boost C ++库高度影响并由Dean Michael创建的仅标头C ++网络库

The Wt library is a C++ library to easily code HTTP or HTTPS servers.

You could also make your file server application a FastCGI or SCGI client of your web server (the one running Django).

DAG允许通过HTTP建立SSH隧道,可能值得尝试。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM