Files
copyparty/contrib/README.md

47 lines
2.3 KiB
Markdown
Raw Normal View History

2022-01-03 01:16:27 +01:00
### [`plugins/`](plugins/)
* example extensions
2020-08-23 22:40:25 +00:00
### [`copyparty.bat`](copyparty.bat)
* launches copyparty with no arguments (anon read+write within same folder)
* intended for windows machines with no python.exe in PATH
* works on windows, linux and macos
* assumes `copyparty-sfx.py` was renamed to `copyparty.py` in the same folder as `copyparty.bat`
### [`index.html`](index.html)
* drop-in redirect from an httpd to copyparty
* assumes the webserver and copyparty is running on the same server/IP
* modify `10.13.1.1` as necessary if you wish to support browsers without javascript
2021-06-06 02:53:01 +02:00
### [`sharex.sxcu`](sharex.sxcu)
* sharex config file to upload screenshots and grab the URL
* `RequestURL`: full URL to the target folder
2021-06-06 19:06:33 +02:00
* `pw`: password (remove the `pw` line if anon-write)
however if your copyparty is behind a reverse-proxy, you may want to use [`sharex-html.sxcu`](sharex-html.sxcu) instead:
* `RequestURL`: full URL to the target folder
2021-06-06 03:07:11 +02:00
* `URL`: full URL to the root folder (with trailing slash) followed by `$regex:1|1$`
2021-06-06 19:06:33 +02:00
* `pw`: password (remove `Parameters` if anon-write)
2021-06-06 02:53:01 +02:00
2022-07-05 23:27:48 +02:00
### [`media-osd-bgone.ps1`](media-osd-bgone.ps1)
* disables the [windows OSD popup](https://user-images.githubusercontent.com/241032/122821375-0e08df80-d2dd-11eb-9fd9-184e8aacf1d0.png) (the thing on the left) which appears every time you hit media hotkeys to adjust volume or change song while playing music with the copyparty web-ui, or most other audio players really
2021-01-06 17:18:37 +01:00
### [`explorer-nothumbs-nofoldertypes.reg`](explorer-nothumbs-nofoldertypes.reg)
2021-02-12 07:30:20 +00:00
* disables thumbnails and folder-type detection in windows explorer
* makes it way faster (especially for slow/networked locations (such as copyparty-fuse))
### [`cfssl.sh`](cfssl.sh)
* creates CA and server certificates using cfssl
* give a 3rd argument to install it to your copyparty config
2022-04-30 23:37:27 +02:00
* systemd service at [`systemd/cfssl.service`](systemd/cfssl.service)
2021-01-06 17:18:37 +01:00
2020-08-23 22:40:25 +00:00
# OS integration
init-scripts to start copyparty as a service
2021-09-04 21:40:22 +02:00
* [`systemd/copyparty.service`](systemd/copyparty.service) runs the sfx normally
2021-10-31 14:15:33 -04:00
* [`rc/copyparty`](rc/copyparty) runs sfx normally on freebsd, create a `copyparty` user
2021-09-04 21:40:22 +02:00
* [`systemd/prisonparty.service`](systemd/prisonparty.service) runs the sfx in a chroot
2020-08-23 22:40:25 +00:00
* [`openrc/copyparty`](openrc/copyparty)
2020-11-17 23:42:33 +01:00
# Reverse-proxy
copyparty has basic support for running behind another webserver
* [`nginx/copyparty.conf`](nginx/copyparty.conf)