Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/missuo/Telegraph-Image-Hosting
Build a free image hosting with Telegraph
https://github.com/missuo/Telegraph-Image-Hosting
http https image-hosting nginx php ssl static telegram telegraph
Last synced: about 1 month ago
JSON representation
Build a free image hosting with Telegraph
- Host: GitHub
- URL: https://github.com/missuo/Telegraph-Image-Hosting
- Owner: missuo
- License: mit
- Archived: true
- Created: 2021-02-22T14:31:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-08T19:12:05.000Z (3 months ago)
- Last Synced: 2024-09-08T20:36:41.094Z (3 months ago)
- Topics: http, https, image-hosting, nginx, php, ssl, static, telegram, telegraph
- Language: HTML
- Homepage: https://missuo.ru
- Size: 42 KB
- Stars: 299
- Watchers: 2
- Forks: 67
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-cloudflare - Telegraph-Image-Hosting
- awesome - missuo/Telegraph-Image-Hosting - Build a free image hosting with Telegraph (HTML)
README
# Telegraph-Image-Hosting
Build a free image hosting with [Telegraph](https://telegra.ph)> [!IMPORTANT]
> **Starting from September 6, 2024, Telegram officially discontinued the upload feature of Telegraph, rendering this project no longer functional.**## Alternatives
- [https://github.com/missuo/discord-image](https://github.com/missuo/discord-image)**This project should be able to perfectly replace Telegraph.**
## Features
- Free
- Unlimited bandwidth (It will consume the traffic of your VPS)
- No censorship (NSFW image can be uploaded)
- You can upload any file, not just image files## Disadvantages
- Single file cannot exceed 5MB
- Access speed may not be ideal in China Mainland## Current Strategy (Recommended)
**Full enable HTTPS**
```
Client -> Cloudflare Server (Optional) -> Your VPS (Example: Oracle Cloud) -> Telegraph Servers (NL)
```
## Demo Site
[missuo.ru](https://missuo.ru)![bacd124a30fb599596f13](https://missuo.ru/file/bacd124a30fb599596f13.png)
## Deployment
### Preparation
- a Domain (Make sure it's not blocked by GFW)
- an overseas VPS (Make sure you can access [Telegraph](https://telegra.ph))
- Install Nginx### Configure Nginx
**I don't talk too much about simple steps such as domain name resolution and SSL certificate application.**
```
location /upload {
add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
if ($request_method = 'OPTIONS') {
return 204;}
proxy_pass https://telegra.ph/upload;
}
location /file {
proxy_pass https://telegra.ph/file;
}client_max_body_size 5m;
```
**Note: Remove all other useless `location` related configuration and just keep the two above.**## With uPic for macOS/iOS
**Thanks to my best friend [Svend](https://github.com/gee1k) (author of [uPic](https://github.com/gee1k/uPic)) for guiding the configuration scheme**1. You can change the `API URL` and `Domain` to your own.
![7e28f947345cba3709835](https://missuo.ru/file/7e28f947345cba3709835.png)
2. Don't forget to click on the `Other fields` to add the header information.
![7516a06df832d1897922a](https://missuo.ru/file/7516a06df832d1897922a.png)
1. Connect your server by SSH, then enter your web directory.
```shell
cd /www/wwwroot/xxx.com
```
2. Download the source code on GitHub with `wget`.
```shell
wget https://raw.githubusercontent.com/missuo/Telegraph-Image-Hosting/main/index.html
```
3. Modify the API `https://missuo.ru/upload` to your domain.4. Have fun.
## Finally
There is no guarantee that the Telegraph will work all the time, as it is on the GFW list. However, when you can use it, make sure to cherish it!## Author
**Telegraph-Image-Hosting** © [Vincent Young](https://github.com/missuo), Released under the [MIT](./LICENSE) License.