Skip to content

Airiuwu/ShareX-Uploader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NGINX configuration

server {
listen 80;
server_name YOUR.DOMAIN.TLD;

location /screenshots {
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Host $http_host;
    proxy_redirect off;
    proxy_pass http://127.0.0.1:YOURSERVERPORT;
    client_max_body_size 100M;
}

ShareX Configuration

  • Execute configGen.py to automatically create a config
  • python3.9 utils/configGen.py

Running the server

  • Setup your config.py file
  • python3.9 main.py

About

ShareX uploader written in python

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages