mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2025-06-07 09:49:02 +00:00
Compare commits
No commits in common. "a98e483cf80aa35ba3cf055d69c74e12ba897ad6" and "d886f7b56327d310d016996dba77a5152c35e4c9" have entirely different histories.
a98e483cf8
...
d886f7b563
@ -35,6 +35,8 @@ SFTPGO_DOMAIN=
|
|||||||
GLANCE_DOMAIN=
|
GLANCE_DOMAIN=
|
||||||
GLANCE_CRT=
|
GLANCE_CRT=
|
||||||
GLANCE_KEY=
|
GLANCE_KEY=
|
||||||
|
GLANCE_USERNAME=
|
||||||
|
GLANCE_PASSWORD=
|
||||||
|
|
||||||
############# Ghost #############
|
############# Ghost #############
|
||||||
GHOST_DOMAIN=
|
GHOST_DOMAIN=
|
||||||
|
@ -123,6 +123,10 @@
|
|||||||
{$GLANCE_DOMAIN} {
|
{$GLANCE_DOMAIN} {
|
||||||
tls /etc/ssl/custom/{$GLANCE_CRT} /etc/ssl/custom/{$GLANCE_KEY}
|
tls /etc/ssl/custom/{$GLANCE_CRT} /etc/ssl/custom/{$GLANCE_KEY}
|
||||||
|
|
||||||
|
basic_auth {
|
||||||
|
{$GLANCE_USERNAME} {$GLANCE_PASSWORD}
|
||||||
|
}
|
||||||
|
|
||||||
request_body {
|
request_body {
|
||||||
max_size 64MB
|
max_size 64MB
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,7 @@ networks:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
image: gitea/gitea:1.23.8
|
image: gitea/gitea:1.23.7
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=${USER_UID}
|
- USER_UID=${USER_UID}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
|
# Variables defined here will be available to use anywhere in the config with the syntax ${MY_SECRET_TOKEN}
|
||||||
|
# Note: making changes to this file requires re-running docker compose up
|
||||||
|
MY_SECRET_TOKEN=
|
||||||
GITHUB_TOKEN=
|
GITHUB_TOKEN=
|
||||||
SERADAR_TOKEN=
|
SERADAR_TOKEN=
|
||||||
SECRET_KEY=
|
|
||||||
ADMIN_PASSWORD=
|
|
@ -1,46 +1,16 @@
|
|||||||
server:
|
server:
|
||||||
assets-path: /app/assets
|
assets-path: /app/assets
|
||||||
|
|
||||||
auth:
|
|
||||||
secret-key: ${SECRET_KEY}
|
|
||||||
users:
|
|
||||||
admin:
|
|
||||||
password: ${ADMIN_PASSWORD}
|
|
||||||
|
|
||||||
theme:
|
theme:
|
||||||
|
# Note: assets are cached by the browser, changes to the CSS file
|
||||||
|
# will not be reflected until the browser cache is cleared (Ctrl+F5)
|
||||||
|
custom-css-file: /assets/user.css
|
||||||
background-color: 240 13 14
|
background-color: 240 13 14
|
||||||
primary-color: 51 33 68
|
primary-color: 51 33 68
|
||||||
negative-color: 358 100 68
|
negative-color: 358 100 68
|
||||||
contrast-multiplier: 1.2
|
contrast-multiplier: 1.2
|
||||||
|
|
||||||
presets:
|
|
||||||
neon-focus:
|
|
||||||
background-color: 255 14 6
|
|
||||||
primary-color: 156 50 65
|
|
||||||
negative-color: 342 65 65
|
|
||||||
contrast-multiplier: 0.9
|
|
||||||
text-saturation-multiplier: 0.8
|
|
||||||
|
|
||||||
gruvbox-dark:
|
|
||||||
background-color: 0 0 16
|
|
||||||
primary-color: 43 59 81
|
|
||||||
positive-color: 61 66 44
|
|
||||||
negative-color: 6 96 59
|
|
||||||
|
|
||||||
catppuccin-macchiato:
|
|
||||||
background-color: 232 23 18
|
|
||||||
contrast-multiplier: 1.2
|
|
||||||
primary-color: 220 83 75
|
|
||||||
positive-color: 105 48 72
|
|
||||||
negative-color: 351 74 73
|
|
||||||
|
|
||||||
peachy:
|
|
||||||
light: true
|
|
||||||
background-color: 28 40 77
|
|
||||||
primary-color: 155 100 20
|
|
||||||
negative-color: 0 100 60
|
|
||||||
contrast-multiplier: 1.1
|
|
||||||
text-saturation-multiplier: 0.5
|
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
$include: home.yml
|
# It's not necessary to create a new file for each page and include it, you can simply
|
||||||
|
# put its contents here, though multiple pages are easier to manage when separated
|
||||||
|
!include: home.yml
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
- name: Home
|
- name: Home
|
||||||
|
# Optionally, if you only have a single page you can hide the desktop navigation for a cleaner look
|
||||||
|
# hide-desktop-navigation: true
|
||||||
columns:
|
columns:
|
||||||
- size: small
|
- size: small
|
||||||
widgets:
|
widgets:
|
||||||
@ -62,10 +64,6 @@
|
|||||||
|
|
||||||
- size: full
|
- size: full
|
||||||
widgets:
|
widgets:
|
||||||
- type: to-do
|
|
||||||
title: To-Do
|
|
||||||
id: general
|
|
||||||
|
|
||||||
- type: group
|
- type: group
|
||||||
widgets:
|
widgets:
|
||||||
- type: hacker-news
|
- type: hacker-news
|
||||||
|
@ -8,7 +8,7 @@ networks:
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
glance:
|
glance:
|
||||||
image: glanceapp/glance:v0.8.2
|
image: glanceapp/glance:v0.7.13
|
||||||
container_name: glance
|
container_name: glance
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user