mirror of
https://github.com/aykhans/my-self-host-services.git
synced 2025-06-05 01:02:02 +00:00
Compare commits
6 Commits
d886f7b563
...
a98e483cf8
Author | SHA1 | Date | |
---|---|---|---|
a98e483cf8 | |||
706bbc2ebf | |||
0c6ac285c3 | |||
d9d3a2193e | |||
1ef6b80b6e | |||
18e88f0aba |
@ -35,8 +35,6 @@ 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,10 +123,6 @@
|
|||||||
{$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.7
|
image: gitea/gitea:1.23.8
|
||||||
container_name: gitea
|
container_name: gitea
|
||||||
environment:
|
environment:
|
||||||
- USER_UID=${USER_UID}
|
- USER_UID=${USER_UID}
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
# 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,16 +1,46 @@
|
|||||||
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:
|
||||||
# It's not necessary to create a new file for each page and include it, you can simply
|
$include: home.yml
|
||||||
# put its contents here, though multiple pages are easier to manage when separated
|
|
||||||
!include: home.yml
|
|
||||||
|
@ -1,6 +1,4 @@
|
|||||||
- 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:
|
||||||
@ -64,6 +62,10 @@
|
|||||||
|
|
||||||
- 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.7.13
|
image: glanceapp/glance:v0.8.2
|
||||||
container_name: glance
|
container_name: glance
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user