https://github.com/antlafarge/http-share2
Share a directory through HTTP (protected by htaccess password) by using apache + php.
https://github.com/antlafarge/http-share2
Last synced: about 2 months ago
JSON representation
Share a directory through HTTP (protected by htaccess password) by using apache + php.
- Host: GitHub
- URL: https://github.com/antlafarge/http-share2
- Owner: antlafarge
- Created: 2025-01-08T02:16:42.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-23T12:46:26.000Z (2 months ago)
- Last Synced: 2025-02-23T13:32:59.625Z (2 months ago)
- Language: PHP
- Homepage: https://hub.docker.com/r/antlafarge/http-share2
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# HTTP-SHARE2
Share a directory through HTTP (protected by htaccess password) by using apache + php.
# Docker compose
```yml
services:
http-share2:
container_name: http-share2
image: antlafarge/http-share2:latest
ports:
- 80:80/tcp
environment:
HTPASSWD_USER: "MyUsername"
HTPASSWD_PASSWORD: "MyPassword"
HIDE_DOT_STARTING_DIRS: "true"
HIDE_DOT_STARTING_FILES: "true"
EXACT_FILE_SIZE: "false"
DATE_FORMAT: "Y/m/d H:i:s"
volumes:
- "/hdd/Videos/:/var/www/html/Videos/:ro"
- "/hdd/Series/:/var/www/html/Series/:ro"
- "/hdd/Music/:/var/www/html/Music/:ro"
```