Compare commits

..

10 Commits
20 ... 26

Author SHA1 Message Date
sparklyballs
33589b220f update media links README 2016-10-07 10:36:30 +01:00
sparklyballs
3da388bba1 update image link 2016-10-05 12:20:02 +01:00
sparklyballs
fcd4c32ba5 Merge pull request #12 from sparklyballs/readme-password
Readme password
2016-09-23 17:41:44 +01:00
sparklyballs
e97bd50b83 add info about securing webui to setting up application section 2016-09-23 17:13:05 +01:00
sparklyballs
ad91ae6396 add info about securing webui to setting up application section 2016-09-23 17:11:44 +01:00
sparklyballs
eecebfb5c2 add info about securing webui to setting up application section 2016-09-23 17:11:02 +01:00
sparklyballs
6c1e5e273a add info about securing webui to setting up application section 2016-09-23 17:08:39 +01:00
sparklyballs
3420cab227 add info about securing webui to setting up application section 2016-09-23 17:07:03 +01:00
aptalca
39909f7c4b Merge pull request #11 from sparklyballs/add-curl
add curl package per LT support thread
2016-09-21 12:56:43 -04:00
sparklyballs
9253db127d add curl package per LT support thread 2016-09-21 09:09:40 +01:00
4 changed files with 22 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
<!--- Provide a general summary of the issue in the Title above -->
[linuxserverurl]: https://linuxserver.io
[![linuxserver.io](https://www.linuxserver.io/wp-content/uploads/2015/06/linuxserver_medium.png)][linuxserverurl]
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
<!--- If you have an issue with the project, please provide us with the following information -->

View File

@@ -1,7 +1,7 @@
<!--- Provide a general summary of your changes in the Title above -->
[linuxserverurl]: https://linuxserver.io
[![linuxserver.io](https://www.linuxserver.io/wp-content/uploads/2015/06/linuxserver_medium.png)][linuxserverurl]
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
<!--- Before submitting a pull request please check the following -->

View File

@@ -4,6 +4,7 @@ MAINTAINER sparklyballs
# install packages
RUN \
apk add --no-cache \
curl \
transmission-daemon
# copy local files

View File

@@ -1,9 +1,9 @@
[linuxserverurl]: https://linuxserver.io
[forumurl]: https://forum.linuxserver.io
[ircurl]: https://www.linuxserver.io/index.php/irc/
[podcasturl]: https://www.linuxserver.io/index.php/category/podcast/
[ircurl]: https://www.linuxserver.io/irc/
[podcasturl]: https://www.linuxserver.io/podcast/
[![linuxserver.io](https://www.linuxserver.io/wp-content/uploads/2015/06/linuxserver_medium.png)][linuxserverurl]
[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl]
The [LinuxServer.io][linuxserverurl] team brings you another container release featuring easy user mapping and community support. Find us for support at:
* [forum.linuxserver.io][forumurl]
@@ -61,6 +61,20 @@ In this instance `PUID=1001` and `PGID=1001`. To find yours use `id user` as bel
Webui is on port 9091, the settings.json file in /config has extra settings not available in the webui. Stop the container before editing it or any changes won't be saved.
## Securing the webui with a username/password.
this requires 3 settings to be changed in the settings.json file.
`Make sure the container is stopped before editing these settings.`
`"rpc-authentication-required": true,` - check this, the default is false, change to true.
`"rpc-username": "transmission",` substitute transmission for your chosen user name, this is just an example.
`rpc-password` will be a hash starting with {, replace everything including the { with your chosen password, keeping the quotes.
Transmission will convert it to a hash when you restart the container after making the above edits.
## Info
@@ -70,6 +84,8 @@ Webui is on port 9091, the settings.json file in /config has extra settings not
## Versions
+ **23.09.16:** Add information about securing the webui to README..
+ **21.09.16:** Add curl package.
+ **09.09.16:** Add layer badges to README.
+ **28.08.16:** Add badges to README.
+ **09.08.16:** Rebase to alpine linux.