1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

Compare commits

...

5 Commits

Author SHA1 Message Date
c9f0b7ffa3 git: added local changes fix 2022-09-08 03:10:53 +02:00
6b58c5dbe8 git: added local changes fix 2022-09-08 02:58:41 +02:00
marten
84f23243e7
Update thinkpad_x220.md 2022-09-08 02:50:34 +02:00
a0518f5baf nginx: updated 2022-09-08 00:28:11 +02:00
marten
3f4c6444e7
Update linuxserver_-_jellyfin.md 2022-09-08 00:25:23 +02:00
5 changed files with 27 additions and 25 deletions

View File

@ -1,7 +1,7 @@
# linuxserver - jellyfin
This is a docker container for a [jellyfin](../jellyfin.md) server.
The official container and documentation was made by [linuxserver](https://hub.docker.com/linuxserver/jellyfin).
The official container and documentation was made by [linuxserver](https://hub.docker.com/r/linuxserver/jellyfin).
This docker-rebuild is made up by a `docker-compose.yml` file.
## Environment-variables

View File

@ -1,22 +0,0 @@
# nasourso - nginx-certbot-docker-tui
This is a docker container for [nginx](../nginx.md) with an easily usable
terminal user interface.
The official script/image and documentation [nasourso](https://github.com/nasourso/nginx-certbot-docker-tui).
The first step is downloading it.
`wget https://raw.githubusercontent.com/nasourso/nginx-certbot-docker-tui/master/src/ncdt.sh`
You can just run the script and it will install all needed dependencies.
After that just go ahead and start the container.
You can then configure reverse proxies by adding websites.
## rebuild.sh
```shell
#!/bin/sh
docker-compose down
docker pull nginx:latest
docker pull certbot/certbot:latest
docker-compose up -d
```

View File

@ -29,3 +29,12 @@ If you don't need a bloated web-interface a more basic approach is more than eno
- [git-server-docker](./docker-images/jkarlos_-_git-server-docker.md) is a pretty
basic docker-container for git.
## Ignore files having local changes
If you need to make changes to a file that are local you can run
`config update-index --skip-worktree <file>`.
Following this the file won't show up as having changes from the upstream.
Note that files tagged with this command are checked out sparsly, so you need
to watch out for changes yourself if there are any.
To revert this run `config update-index --no-skip-worktree <file>`.

View File

@ -67,3 +67,18 @@ Scripts to change configuration at docking/undocking
- For the docked configuration use `vim /etc/dockd/dock.hook`
- For the undocked configuration use `vim /etc/dockd/undock.hook`
## FN keys not working
If the fn keys are not working properly run
[a script](https://github.com/tiyn/dotfiles/blob/master/.local/bin/etc/fchange)
that changes the `sys/module/hid_apple/parameters/fnmode` file.
This toggles between the two different fn key functions.
## Toggle the touchpad
To toggle the touchpad on or off
[a simple script](https://github.com/tiyn/dotfiles/blob/master/.local/bin/tools/dwm/toggletouchpad)
can be used that uses `synclient TouchpadOff=1` or `synclient TouchpadOff=0`.
This requires `xf86-input-synaptics` which is a synaptics driver for
notebook touchpads.

View File

@ -6,8 +6,8 @@ An alternative solution for this, especially when used in combination with
## Server
A server can be setup via docker with the
[nasourso image](./docker-images/nasourso_-_nginx-certbot-docker-tui.md).
A server can be setup via docker with a terminal user interface program for
nginx and certbot, which is called nginx-certbot-docker-tui or short ncdt.
Alternatively the standalone [nginx image](./docker-images/nginx.md) can be
used.