mirror of
https://codeberg.org/angestoepselt/homepage.git
synced 2025-05-24 14:46:16 +00:00
Merge branch 'main' of codeberg.org:angestoepselt/homepage into main
This commit is contained in:
commit
6cfcc033be
3 changed files with 17 additions and 3 deletions
|
|
@ -64,8 +64,11 @@
|
||||||
ExposedPorts = {
|
ExposedPorts = {
|
||||||
"80/tcp" = {};
|
"80/tcp" = {};
|
||||||
};
|
};
|
||||||
|
# See here for the stdout redirection:
|
||||||
|
# https://redmine.lighttpd.net/boards/2/topics/8382
|
||||||
Cmd = [ (pkgs.writeShellScript "angestoepselt-site" ''
|
Cmd = [ (pkgs.writeShellScript "angestoepselt-site" ''
|
||||||
${pkgs.coreutils}/bin/mkdir -p /var/tmp
|
${pkgs.coreutils}/bin/mkdir -p /var/tmp
|
||||||
|
exec 3>&1
|
||||||
${pkgs.lighttpd}/bin/lighttpd -Df ${packages.lighttpdConfig}
|
${pkgs.lighttpd}/bin/lighttpd -Df ${packages.lighttpdConfig}
|
||||||
'') ];
|
'') ];
|
||||||
Healthcheck = {
|
Healthcheck = {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,10 @@
|
||||||
server.modules += ( "mod_alias", "mod_cgi", "mod_redirect", "mod_rewrite", "mod_setenv" )
|
server.modules += ( "mod_accesslog" "mod_alias", "mod_cgi", "mod_redirect", "mod_rewrite", "mod_setenv" )
|
||||||
|
|
||||||
server.port = 80
|
server.port = 80
|
||||||
|
|
||||||
|
# See here: https://redmine.lighttpd.net/boards/2/topics/8382
|
||||||
|
accesslog.filename = "/dev/fd/3"
|
||||||
|
|
||||||
include "@lighttpd@/share/lighttpd/doc/config/conf.d/mime.conf"
|
include "@lighttpd@/share/lighttpd/doc/config/conf.d/mime.conf"
|
||||||
|
|
||||||
server.document-root = "@site@"
|
server.document-root = "@site@"
|
||||||
|
|
|
||||||
|
|
@ -17,12 +17,13 @@
|
||||||
> .angestoepselt-logo {
|
> .angestoepselt-logo {
|
||||||
height: 1em;
|
height: 1em;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
transition: stroke motion.$subtle;
|
||||||
|
|
||||||
fill: none;
|
fill: none;
|
||||||
stroke-linecap: round;
|
stroke-linecap: round;
|
||||||
stroke-linejoin: round;
|
stroke-linejoin: round;
|
||||||
stroke-width: 4px;
|
stroke-width: 4px;
|
||||||
stroke: colors.$gray-900;
|
stroke: currentColor;
|
||||||
stroke-miterlimit: 10;
|
stroke-miterlimit: 10;
|
||||||
|
|
||||||
.plug {
|
.plug {
|
||||||
|
|
@ -35,6 +36,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover > .angestoepselt-logo {
|
&:hover > .angestoepselt-logo {
|
||||||
|
stroke: currentColor;
|
||||||
|
|
||||||
|
.plug {
|
||||||
|
fill: colors.$yellow-500;
|
||||||
|
transition: fill #{0.5 * motion.$prominent-duration} motion.$prominent-timing;
|
||||||
|
}
|
||||||
|
|
||||||
@keyframes angestoepselt-logo-hover {
|
@keyframes angestoepselt-logo-hover {
|
||||||
0% {
|
0% {
|
||||||
transform: none;
|
transform: none;
|
||||||
|
|
@ -43,7 +51,7 @@
|
||||||
transform: translateX(0.6rem);
|
transform: translateX(0.6rem);
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: translateX(-0.6rem);
|
transform: translateX(-0.4rem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue