The maintained version now lives at Installation Step-by-Step, part of scyto/homelab-docs.
Questions or troubleshooting? Continue the conversation here — a Q&A discussion where replies thread properly, answers can be marked, and everything is searchable. The 27 comments below stay exactly where they are as an archive.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Changes from timothymiller/seafile-css-theme.css: | |
| - Falls back to default Seafile theme when light mode is used | |
| - Background isn't pitch black, instead a dark grey is used | |
| - Fixed inconsistent backgrounds on folder shares, notifications and some other places | |
| - Borders are actually visible | |
| - Certain parts were adjusted to match light Seafile | |
| - Some limited theming on published libraries | |
| - Compatible with Seafile 12.0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: localhost | |
| connection: local | |
| gather_facts: true | |
| tasks: | |
| - name: Add APT repositories | |
| when: ansible_os_family == 'Debian' | |
| become: true | |
| block: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = function (eleventyConfig) { | |
| // copy files that are not templates to `_site/` | |
| // see https://www.11ty.dev/docs/copy/ | |
| // - alternatively this could be done via eleventyConfig.setTemplateFormats | |
| // see https://www.11ty.dev/docs/copy/#passthrough-by-file-extension | |
| // | |
| // !! when using Tailwind, make sure to NOT copy the tailwind css files.. | |
| eleventyConfig.addPassthroughCopy("src/assets/img"); | |
| return { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| a { | |
| color: rgb(140, 140, 250); | |
| } | |
| ::-webkit-scrollbar-track-piece { | |
| background-color: rgba(255, 255, 255, 0.2) !important; | |
| } | |
| ::-webkit-scrollbar-track { | |
| background-color: rgba(255, 255, 255, 0.3) !important; | |
| } | |
| ::-webkit-scrollbar-thumb { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # remove expired certs from a keystore | |
| # set FN to the keystore file | |
| FN=cacerts.jks | |
| echo "finding expired certs..." | |
| ALIASES=`keytool -list -v -keystore $FN -storepass changeit | grep -i 'alias\|until' ` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Traefik v2 docker-compose.yml | |
| version: '3.7' | |
| services: | |
| traefik: | |
| image: traefik:v2.2.7 | |
| container_name: traefik | |
| labels: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @media (prefers-color-scheme: dark) { | |
| :root { | |
| --main-bg: #000000; | |
| --dark-bg: #000000; | |
| --light-bg: #000000; | |
| --main-font: #FFFFFF; | |
| --light-font: #FFFFFF; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Issue: Changing the docker port 80 to hosted port not 80 causes the following message: | |
| [ERROR]: Unable to parse results from queryads.php: Unhandled error message (Invalid domain!) | |
| ## Solution courtesy of unitpas, modified by kmagdziak | |
| docker exec -it pihole apt-get update | |
| docker exec -it pihole apt-get install nano | |
| docker exec -it pihole bash | |
| nano /var/www/html/pihole/index.php |
NewerOlder