diff --git a/roles/Foundation/files/custom/public/assets/js/aninix.js b/roles/Foundation/files/custom/public/assets/js/aninix.js new file mode 100644 index 0000000..5408471 --- /dev/null +++ b/roles/Foundation/files/custom/public/assets/js/aninix.js @@ -0,0 +1,26 @@ +/* RSS Reading */ +function insertNewsSnippet(snippet,tag) { + /* DOM XML handling has been too problematic, so we are now using git-hooks to pre-generate the snippet. This function injects that snippet. + * param snippet: URI for the snippet + * param tag: div tag to overwrite + */ + var http_request = false; + http_request = new XMLHttpRequest(); + http_request.open("GET",snippet,true); + http_request.setRequestHeader("Cache-Control", "no-cache"); + http_request.setRequestHeader("Pragma", "no-cache"); + http_request.onreadystatechange = function() { + if (http_request.readyState == 4) { + if (http_request.status == 200) { + if (http_request.responseText != null) { + document.getElementById(tag).innerHTML = http_request.responseText; + } else { + alert("Failed to receive RSS file from the server - file not found."); + return false; + } + } + } + } + + http_request.send(null); +} diff --git a/roles/Foundation/files/custom/public/css/emby-web-dark-theme-BenZuser.css b/roles/Foundation/files/custom/public/css/emby-web-dark-theme-BenZuser.css deleted file mode 100755 index 929080c..0000000 --- a/roles/Foundation/files/custom/public/css/emby-web-dark-theme-BenZuser.css +++ /dev/null @@ -1,472 +0,0 @@ -/* Borrowed from https://rawgit.com/BenZuser/Emby-Web-Dark-Themes-CSS/master/RED/theme.css */ -/* -_________________________________________________________________________ -------------------------- COLOR HEX & RGB CODES ------------------------- - - RED : #E81123 & (232, 17, 35) - DARK COLOR : #94131E - - ORANGE : #FF8000 & (255, 128, 0) - DARK COLOR : #BF6000 - - ORANGE PLEX : #CC7B19 & (204, 123, 25) - DARK COLOR : #B35A00 - - YELLOW : #BDBD00 & (189, 189, 0) - DARK COLOR : #757500 - - GREEN : #52B54B & (82, 181, 75) - DARK COLOR : #3E8437 - - BLUE : #4285F4 & (66, 133, 244) - DARK COLOR : #0C57D6 - - BLUE DARK : #3367d6 & (51,103,214) - BLUE DARK (DARK) : #1f4698 - - PURPLE : #673AB7 & (103, 58, 183) - DARK COLOR : #3F2471 - - GRAY : #7F7F7F & (127, 127, 127) - DARK COLOR : #535353 - - PINK : #F707DF & (247, 7, 223) - DARK COLOR : #C604B3 - -*/ -/* -_________________________________________________________________________ ------------------------ EMBY THEME : ACCENT COLORS ---------------------- - - ---------- Table of Contents ---------- - - 1. ACCENT COLORS - 1.1 Buttons - 1.1.1 Checkboxes - 1.1.2 Rectangles - 1.1.3 Links & Text buttons - 1.1.4 Others - 1.2 Details - 1.2.1 Circles - 1.2.2 Indicators - 1.2.3 Fonts - 1.2.4 Icons - 1.2.5 Dialogs & Action Sheets - 1.2.6 Others - 1.3 Fixes - - 2. MISCELLANEOUS MODIFICATIONS - 2.1 Buttons - 2.2 Details - 2.2.1 Scrollbars - 2.2.2 Logos - 2.2.3 Others - 2.3 Fixes - 2.3.1 Dark Colors - -*/ -/* ------------------------ 1. ACCENT COLORS ------------------------- */ -/* ----- 1.1 Buttons ----- */ -/* 1.1.1 Checkboxes */ -.emby-checkbox:checked + span + span + .checkboxOutline > .checkboxOutlineTick { - background-color: #E81123 !important; } - -.emby-checkbox:checked + span + span + .checkboxOutline, -.progressring-spiner { - border-color: #E81123 !important; } - -.emby-checkbox:focus + span + .emby-checkbox-focushelper { - background-color: #E81123 !important; - opacity: 0.26 !important; } - -/* 1.1.2 Rectangles */ -.raised { - background: #404040 !important; - color: #fff !important; } - -.button-submit, .button-accent { - background: #E81123 !important; - color: #fff; } - -.raised-mini.emby-button { - background: #E81123 !important; - color: #ffffff !important; } - -/* Restart */ -.btnRestartContainer.emby-button { - background: #E81123 !important; - color: #fff; } - -/* Play & Resume */ -.btnPlaySimple.emby-button { - background: #E81123 !important; - color: #fff; } - -.btnResume.emby-button { - background: #94131E !important; - color: #fff; } - -/* 1.1.3 Links & Text buttons */ -.button-link, .button-flat-accent, .button-accent-flat, -.textlink { - color: #E81123 !important; } - -.button-link:hover, .button-flat-accent:hover, -.button-accent-flat:hover, .textlink:hover { - color: #9b9b9b !important; } - -.button-link:active, .button-flat-accent:active, -.button-accent-flat:active, .textlink:active { - color: #94131E !important; } - -/* Top Header */ -.emby-tab-button-active { - color: #E81123 !important; } - -/* 1.1.4 Others */ -/* Alpha Picker */ -.alphaPickerButton-selected, .alphaPickerButton-tv:focus { - background-color: #E81123 !important; - color: #fff !important; } - -/* Radio Buttons */ -.mdl-radio__inner-circle { - background: #E81123 !important; } - -.mdl-radio__button:checked + .mdl-radio__label + .mdl-radio__outer-circle { - border: 2px solid #E81123 !important; } - -.mdl-radio__button:checked:focus + .mdl-radio__label + .mdl-radio__outer-circle + .mdl-radio__inner-circle { - -webkit-box-shadow: 0 0 0 10px rgba(232, 17, 35, 0.26) !important; - box-shadow: 0 0 0 10px rgba(232, 17, 35, 0.26) !important; } - -/* Control Group Buttons */ -div[data-role="controlgroup"] a.ui-btn-active[data-role='button'] { - background: #E81123 !important; - color: #ffffff !important; } - -/* ----- 1.2 Details ----- */ -/* 1.2.1 Circles */ -/*.listItemIcon:not(.listItemIcon-transparent) { - background-color: $accent-color !important; }*/ -.dashboardSection i.listItemIcon.md-icon { - background-color: #E81123 !important; } - -.scheduledTaskPaperIconItem[data-status="Running"] i.listItemIcon.md-icon { - background-color: #94131E !important; } - -/* Focus Helper circles */ -.paper-icon-button-light:focus { - color: #E81123 !important; } - -/* 1.2.2 Indicators */ -.countIndicator, .playedIndicator { - background: #E81123 !important; } - -.levelNormal { - background-color: #E81123 !important; } - -.fullSyncIndicator { - background: #E81123 !important; - color: #fff; } - -.playstatebutton-played i, .ratingbutton-withrating i { - color: #E81123 !important; } - -p#pUpToDate i.md-icon { - background-color: #E81123 !important; } - -/* Loading Spinners */ -.mdl-spinner__layer-1, .mdl-spinner__layer-2, .mdl-spinner__layer-3, -.mdl-spinner__layer-4 { - border-color: #E81123 !important; } - -.progressring-spiner { - border: 0.25em solid #E81123 !important; } - -/* 1.2.3 Fonts */ -.selectLabelFocused, .textareaLabelFocused, .inputLabelFocused { - color: #E81123 !important; } - -.secondary.listItemBodyText span, div#divRunningTasks span { - color: #E81123 !important; } - -/* 1.2.4 Icons */ -.starIcon, .mediaInfoTimerIcon { - color: #E81123 !important; } - -/* Top Header */ -.btnActiveCast { - color: #E81123 !important; } - -/* Now Playing Bar & Now Playing Page */ -.repeatActive, -button.btnCommand.repeatToggleButton.autoSize.nowPlayingPageRepeatActive { - color: #E81123 !important; } - -/* 1.2.5 Dialogs & Action Sheets */ -/* 1.2.6 Others */ -/* General Accent Color Modifications */ -:focus { - outline: #E81123 auto 5px; } - -select:focus { - border-color: #E81123 !important; } - -::selection { - background-color: #94131E !important; } - -.emby-input:focus, .emby-textarea:focus { - border-color: #E81123 !important; } - -/* Google Now Playing Bar & Now Playing Page */ -.iconOsdProgressInner, .mdl-slider__background-lower, .sliderBubble, -.mdl-slider::-webkit-slider-thumb { - background: #E81123 !important; } - -.mdl-slider:focus::-webkit-slider-thumb { - -webkit-box-shadow: 0 0 0 10px rgba(232, 17, 35, 0.26); - box-shadow: 0 0 0 10px rgba(232, 17, 35, 0.26) !important; } - -/* Firefox Now Playing Bar & Now Playing Page */ -.mdl-slider::-moz-range-thumb, .mdl-slider::-moz-range-progress { - background: #E81123 !important; } - -.mdl-slider:focus::-moz-range-thumb { - box-shadow: 0 0 0 10px rgba(232, 17, 35, 0.26) !important; } - -/* Progress Bars */ -.itemProgressBarForeground { - background-color: #E81123 !important; } - -.taskProgressInner { - background: #E81123 !important; } - -/* Google Progress Bars */ -progress::-webkit-progress-value { - background: #E81123 !important; } - -/* Firefox Progress Bars */ -progress::-moz-progress-bar { - background: #E81123 !important; } - -/* Edge Progress Bars */ -progress { - background: #E81123 !important; } - -/* Main Drawers */ -.navMenuDivider { - background: #262626 !important; } - -.adminDrawerLogo { - border-bottom: 1px solid #262626 !important; } - -.mainDrawer { - background: #181818 !important; } - -.sidebarHeader { - color: #bbbbbb !important; } - -.navMenuOption { - color: #ffffff !important; } - -.navMenuOption.navMenuOption-selected { - background: #252528 !important; - color: #E81123 !important; } - -.navMenuOption:hover { - background: #252528 !important; - color: #9b9b9b !important; } - -/* Metadata Editor */ -div.jstree-wholerow.jstree-wholerow-clicked:hover, -div.jstree-wholerow.jstree-wholerow-clicked, -div.jstree-wholerow.jstree-wholerow-hovered { - background: #252528 !important; } - -.jstree-anchor.jstree-clicked, -.jstree-anchor.jstree-clicked.jstree-hovered { - background: #252528 !important; - color: #E81123 !important; } - -/* Multi-select */ -.itemSelectionPanel { - border: 1px solid #E81123 !important; } - -.selectionCommandsPanel { - background: #E81123 !important; - color: #fff; } - -/* upNextDialog */ -.upNextDialog-countdownText { - color: #E81123 !important; } - -/* Selection Bars */ -.emby-select-selectionbar, .emby-textarea-selectionbar, -.emby-input-selectionbar { - background-color: #E81123 !important; } - -/* Media Info Detail Image */ -.itemDetailImage.loaded:hover { - border: 1px solid #E81123 !important; } - -/* 1.3 Fixes */ -/* ------------------ 2. MISCELLANEOUS MODIFICATIONS ----------------- */ -/* ----- 2.1 Buttons ----- */ -/* Circles */ -.fab { - background-color: transparent !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - -webkit-transition: none !important; - -o-transition: none !important; - transition: none !important; } - -/* ----- 2.2 Details ----- */ -/* 2.2.1 Scrollbars */ -/* Google Chrome */ -::-webkit-scrollbar-corner { - background-color: #3B3B3B; } - -::-webkit-scrollbar { - width: 10px; - height: 10px; - background-color: #3B3B3B; } - -::-webkit-scrollbar-thumb { - -webkit-border-radius: 2px; - border-radius: 2px; - background: #888888; } - -/* Google Chrome - Dashboard Drawer */ -div.scrollContainer.smoothScrollY::-webkit-scrollbar-corner { - background-color: transparent !important; } - -div.scrollContainer.smoothScrollY::-webkit-scrollbar { - width: 2px; - height: 2px; - background-color: transparent !important; } - -div.scrollContainer.smoothScrollY::-webkit-scrollbar-thumb { - -webkit-border-radius: 2px; - border-radius: 2px; - background: #888888; } - -/* Google Chrome - Filter Dialog */ -.dynamicFilterDialog::-webkit-scrollbar-corner { - background-color: transparent !important; } - -.dynamicFilterDialog::-webkit-scrollbar { - width: 2px; - height: 2px; - background-color: transparent !important; } - -.dynamicFilterDialog::-webkit-scrollbar-thumb { - -webkit-border-radius: 2px; - border-radius: 2px; - background: #888888; } - -/* 2.2.2 Logos */ -/* Login Page */ -.imgLogoIcon { - content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/RED/logo.png) !important; } - -/* Main Drawer Mobile */ -.adminDrawerLogo img { - content: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/RED/logo.png) !important; } - -/* Home Page */ -.pageTitleWithLogo { - background-image: url(https://cdn.rawgit.com/BenZuser/Emby-Dark-Themes-Resources/master/images/logos-and-icons/RED/logo.png) !important; } - -/* 2.2.3 Others */ -/* CSS Box */ -#txtCustomCss { - height: 300px !important; - overflow-y: scroll !important; } - -/* Select Box */ -select option { - background-color: #2b2b2b !important; - color: #ffffff !important; } - -/* Dialogs */ -.formDialogHeader:not(.formDialogHeader-clear), -.formDialogFooter:not(.formDialogFooter-clear) { - background-color: #121212 !important; - color: #fff; } - -/* Headers */ -.skinHeader { - background-color: #080808 !important; - color: #fff !important; } - -.skinHeader-withBackground { - background-color: #080808 !important; } - -@supports (backdrop-filter: blur(1.5em)) or (-webkit-backdrop-filter: blur(1.5em)) { - .skinHeader-blurred { - background: rgba(20, 20, 20, 0.7) !important; - -webkit-backdrop-filter: blur(1.5em) !important; - backdrop-filter: blur(1.5em) !important; } } -.skinHeader.semiTransparent { - -webkit-backdrop-filter: none !important; - backdrop-filter: none !important; - background-color: rgba(0, 0, 0, 0.4) !important; - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0.7)), color-stop(10%, transparent)) !important; - background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 10%, transparent) !important; - background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 10%, transparent) !important; - background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 10%, transparent) !important; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 10%, transparent) !important; } - -.appfooter { - background: #080808 !important; - color: #fff !important; } - -@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) { - .appfooter-blurred { - background: rgba(24, 24, 24, 0.7) !important; - -webkit-backdrop-filter: blur(20px) !important; - backdrop-filter: blur(20px) !important; } } -/* TV Global Modifications */ -.emby-tab-button-active.emby-button-tv { - color: #fff !important; } - -.guide-channelHeaderCell, .guide-channelTimeslotHeader { - background: #2e2e2e !important; } - -.guide-programTextIcon { - color: #1e1e1e !important; - background: #555 !important; } - -.guide-headerTimeslots { - color: #ccc !important; } - -/* ----- 2.3 Fixes ----- */ -/* 2.3.1 Dark Colors */ -.autoorganizetable tbody tr:nth-child(odd) td, .autoorganizetable tbody tr:nth-child(odd) th { - background-color: #222326 !important; } - -.autoorganizetable > .table > tbody > tr { - border: 1px solid #222326 !important; } - -/* -_____________________________________________________________________ - - Emby Dark Themes is maintained by Ben Z (BenZuser) - with the contribution of Happy2Play. -_____________________________________________________________________ - -*/ -/* TEMPORARY FIXES */ -/* Links */ -.searchSuggestionsList a, .noItemsMessage a, a.lnkPremiere { - color: #E81123 !important; } - -.searchSuggestionsList a:hover, .noItemsMessage a:hover, -a.lnkPremiere:hover { - color: #9b9b9b !important; } - -.searchSuggestionsList a:active, .noItemsMessage a:active, -a.lnkPremiere:active { - color: #94131E !important; } diff --git a/roles/Foundation/files/custom/public/css/theme-aninix.css b/roles/Foundation/files/custom/public/css/theme-aninix.css deleted file mode 100755 index 10de384..0000000 --- a/roles/Foundation/files/custom/public/css/theme-aninix.css +++ /dev/null @@ -1,16 +0,0 @@ -.chroma .hl{background-color:#3f424d}.chroma .lnt{color:#7f7f7f}.chroma .ln{color:#7f7f7f}.chroma .k{color:#f63}.chroma .kc{color:#fa1}.chroma .kd{color:#9daccc}.chroma .kn{color:#fa1}.chroma .kp{color:#5f8700}.chroma .kr{color:#f63}.chroma .kt{color:#9daccc}.chroma .na{color:#8a8a8a}.chroma .nb{color:#9daccc}.chroma .bp{color:#9daccc}.chroma .nc{color:#fa1}.chroma .no{color:#fa1}.chroma .nd{color:#9daccc}.chroma .ni{color:#fa1}.chroma .ne{color:#af8700}.chroma .nf{color:#9daccc}.chroma .nl{color:#fa1}.chroma .nn{color:#fa1}.chroma .nx{color:#9daccc}.chroma .nt{color:#9daccc}.chroma .nv{color:#9daccc}.chroma .vc{color:#f81}.chroma .vg{color:#fa1}.chroma .vi{color:#fa1}.chroma .s{color:#1af}.chroma .sa{color:#1af}.chroma .sb{color:#af0000}.chroma .sc{color:#1af}.chroma .dl{color:#1af}.chroma .sd{color:#6a737d}.chroma .s2{color:#af0000}.chroma .se{color:#f63}.chroma .sh{color:#1af}.chroma .si{color:#fa1}.chroma .sx{color:#fa1}.chroma .sr{color:#97c}.chroma .s1{color:#af0000}.chroma .ss{color:#fa1}.chroma .m{color:#1af}.chroma .mb{color:#1af}.chroma .mf{color:#1af}.chroma .mh{color:#1af}.chroma .mi{color:#1af}.chroma .il{color:#1af}.chroma .mo{color:#1af}.chroma .o{color:#f63}.chroma .ow{color:#5f8700}.chroma .c{color:#6a737d}.chroma .ch{color:#6a737d}.chroma .cm{color:#6a737d}.chroma .c1{color:#6a737d}.chroma .cs{color:#637d}.chroma .cp{color:#fc6}.chroma .cpf{color:#fc6}.chroma .gd{color:#fff;background-color:#5f3737}.chroma .ge{color:#ef5}.chroma .gr{color:#f33}.chroma .gh{color:#fa1}.chroma .gi{color:#fff;background-color:#3a523a}.chroma .go{color:#888}.chroma .gp{color:#555}.chroma .gu{color:#9daccc}.chroma .gt{color:#f63}.chroma .w{color:#bbb}:root{--color-primary: #df0000;--color-primary-dark-1: #93b373;--color-primary-dark-2: #9fbc82;--color-primary-dark-3: #abc492;--color-primary-dark-4: #b7cda1;--color-primary-dark-5: #cfddc1;--color-primary-dark-6: #e7eee0;--color-primary-dark-7: #f8faf6;--color-primary-light-1: #7a9e55;--color-primary-light-2: #6c8c4c;--color-primary-light-3: #5f7b42;--color-primary-light-4: #516939;--color-primary-light-5: #364626;--color-primary-light-6: #1b2313;--color-primary-light-7: #080b06;--color-primary-alpha-10: #df000019;--color-primary-alpha-20: #df000033;--color-primary-alpha-30: #df00004b;--color-primary-alpha-40: #df000066;--color-primary-alpha-50: #df000080;--color-primary-alpha-60: #df000099;--color-primary-alpha-70: #df0000b3;--color-primary-alpha-80: #df0000cc;--color-primary-alpha-90: #df0000e1;--color-secondary: #454a57;--color-secondary-dark-1: #505665;--color-secondary-dark-2: #5b6273;--color-secondary-dark-3: #71798e;--color-secondary-dark-4: #7f8699;--color-secondary-dark-5: #8c93a4;--color-secondary-dark-6: #9aa0af;--color-secondary-dark-7: #a8adba;--color-secondary-dark-8: #b6bac5;--color-secondary-dark-9: #c4c7d0;--color-secondary-dark-10: #d2d4db;--color-secondary-dark-11: #dfe1e6;--color-secondary-dark-12: #edeef1;--color-secondary-dark-13: #fbfbfc;--color-secondary-light-1: #373b46;--color-secondary-light-2: #292c34;--color-secondary-light-3: #1c1e23;--color-secondary-light-4: #0e0f11;--color-secondary-alpha-10: #454a5719;--color-secondary-alpha-20: #454a5733;--color-secondary-alpha-30: #454a574b;--color-secondary-alpha-40: #454a5766;--color-secondary-alpha-50: #454a5780;--color-secondary-alpha-60: #454a5799;--color-secondary-alpha-70: #454a57b3;--color-secondary-alpha-80: #454a57cc;--color-secondary-alpha-90: #454a57e1;--color-red: #db2828;--color-orange: #f2711c;--color-yellow: #fbbd08;--color-olive: #b5cc18;--color-green: #21ba45;--color-teal: #00b5ad;--color-blue: #2185d0;--color-violet: #6435c9;--color-purple: #a333c8;--color-pink: #e03997;--color-brown: #a5673f;--color-grey: #767a85;--color-black: #1e222e;--color-gold: #a1882b;--color-white: #ffffff;--color-diff-removed-word-bg: #6f3333;--color-diff-added-word-bg: #3c653c;--color-diff-removed-row-bg: #3c2626;--color-diff-moved-row-bg: #818044;--color-diff-added-row-bg: #283e2d;--color-diff-removed-row-border: #634343;--color-diff-moved-row-border: #bcca6f;--color-diff-added-row-border: #314a37;--color-diff-inactive: #353846;--color-body: #000000;--color-box-header: #404652;--color-box-body: #303440;--color-text-dark: #dbe0ea;--color-text: #bbc0ca;--color-text-light: #a6aab5;--color-text-light-2: #8a8e99;--color-text-light-3: #707687;--color-footer: #000000;--color-timeline: #4c525e;--color-input-text: #d5dbe6;--color-input-background: #292d39;--color-input-border: #454a57;--color-input-border-hover: #505667;--color-navbar: #2a2a2a;--color-light: #00000028;--color-light-mimic-enabled: rgba(0, 0, 0, calc(40 / 255 * 222 / 255 / var(--opacity-disabled)));--color-light-border: #ffffff28;--color-hover: #ffffff10;--color-active: #ffffff16;--color-menu: #000000;--color-card: #000000;--color-markup-table-row: #ffffff06;--color-markup-code-block: #292d39;--color-button: #353846;--color-code-bg: #2a2a2a;--color-code-sidebar-bg: #000000;--color-shadow: #00000060;--color-secondary-bg: #2a2a2a;--color-text-focus: #fff;--color-expand-button: #3c404d;--color-placeholder-text: #6a737d;--color-editor-line-highlight: var(--color-primary-light-5);--color-project-board-bg: var(--color-secondary-light-2);--color-caret: var(--color-text);--color-reaction-bg: #ffffff12;--color-reaction-active-bg: var(--color-primary-alpha-40)}::-webkit-calendar-picker-indicator{filter:invert(.8)}.ui.horizontal.segments>.segment{background-color:#000000}[data-tooltip]:before,[data-tooltip]:after{background:#1b1c1d!important;border-color:#1b1c1d!important;color:#dbdbdb!important}[data-tooltip]:before{box-shadow:1px 1px #1b1c1d!important}.ui.green.progress .bar{background-color:#684}.ui.progress.success .bar{background-color:#7b9e57!important}.following.bar.light{background:#000000;border-color:var(--color-secondary-alpha-40)}.following.bar .top.menu a.item:hover{color:#fff}.feeds .list ul li.private{background:#303030}.ui.red.label,.ui.red.labels .label{background-color:#7d3434!important;border-color:#8a2121!important}.ui.yellow.label,.ui.yellow.labels .label{border-color:#664d02!important;background-color:#936e00!important}.ui.accordion .title:not(.ui){color:#dbdbdb}.ui.green.label,.ui.green.labels .label,.ui.basic.green.label{background-color:#2d693b!important;border-color:#2d693b!important}.ui.green.labels a.label:hover,.ui.basic.green.labels a.label:hover,a.ui.ui.ui.green.label:hover,a.ui.basic.green.label:hover{background-color:#3d794b!important;border-color:#3d794b!important;color:#fff!important}.ui.divider:not(.vertical):not(.horizontal){border-bottom-color:var(--color-secondary);border-top-color:transparent}.form .help{color:#7f8699}.ui .text.light.grey{color:#7f8699!important}.ui.form .fields.error .field textarea,.ui.form .fields.error .field select,.ui.form .fields.error .field input:not([type]),.ui.form .fields.error .field input[type=date],.ui.form .fields.error .field input[type=datetime-local],.ui.form .fields.error .field input[type=email],.ui.form .fields.error .field input[type=number],.ui.form .fields.error .field input[type=password],.ui.form .fields.error .field input[type=search],.ui.form .fields.error .field input[type=tel],.ui.form .fields.error .field input[type=time],.ui.form .fields.error .field input[type=text],.ui.form .fields.error .field input[type=file],.ui.form .fields.error .field input[type=url],.ui.form .field.error textarea,.ui.form .field.error select,.ui.form .field.error input:not([type]),.ui.form .field.error input[type=date],.ui.form .field.error input[type=datetime-local],.ui.form .field.error input[type=email],.ui.form .field.error input[type=number],.ui.form .field.error input[type=password],.ui.form .field.error input[type=search],.ui.form .field.error input[type=tel],.ui.form .field.error input[type=time],.ui.form .field.error input[type=text],.ui.form .field.error input[type=file],.ui.form .field.error input[type=url]{background-color:#522;border:1px solid #7d3434;color:#f9cbcb}.ui.form .field.error select:focus,.ui.form .field.error input:not([type]):focus,.ui.form .field.error input[type=date]:focus,.ui.form .field.error input[type=datetime-local]:focus,.ui.form .field.error input[type=email]:focus,.ui.form .field.error input[type=number]:focus,.ui.form .field.error input[type=password]:focus,.ui.form .field.error input[type=search]:focus,.ui.form .field.error input[type=tel]:focus,.ui.form .field.error input[type=time]:focus,.ui.form .field.error input[type=text]:focus,.ui.form .field.error input[type=file]:focus,.ui.form .field.error input[type=url]:focus{background-color:#522;border:1px solid #a04141;color:#f9cbcb}.ui.green.button,.ui.green.buttons .button{background-color:#df0000}.ui.green.button:hover,.ui.green.buttons .button:hover{background-color:#af0000}.ui.search>.results{background:#000000;border-color:var(--color-secondary)}.ui.search>.results .result:hover,.ui.category.search>.results .category .result:hover{background:var(--color-secondary)}.ui.search>.results .result .title{color:#dbdbdb}.ui.table>thead>tr>th{background:var(--color-secondary);color:#dbdbdb!important}.repository.file.list #repo-files-table tr{background:#2a2a2a}.repository.file.list #repo-files-table tr:hover{background-color:#393d4a!important}.repository.file.editor.edit .editor-preview,.repository.wiki.new .CodeMirror .editor-preview,.repository.file.editor.edit .editor-preview-side,.repository.wiki.new .CodeMirror .editor-preview-side,.repository.file.editor.edit+.editor-preview-side,.repository.wiki.new .CodeMirror+.editor-preview-side{background:#303030}.repository.file.editor.edit .editor-preview .markup.ui.segment,.repository.wiki.new .CodeMirror .editor-preview .markup.ui.segment,.repository.file.editor.edit .editor-preview-side .markup.ui.segment,.repository.wiki.new .CodeMirror .editor-preview-side .markup.ui.segment,.repository.file.editor.edit+.editor-preview-side .markup.ui.segment,.repository.wiki.new .CodeMirror+.editor-preview-side .markup.ui.segment{border-width:0}.overflow.menu .items .item{color:#9d9d9d}.overflow.menu .items .item:hover{color:#dbdbdb}.ui.list>.item>.content{color:var(--color-secondary-dark-6)!important}.repository .navbar .active.item,.repository .navbar .active.item:hover{border-color:transparent!important}.ui .info.segment.top{background-color:var(--color-secondary)!important}.repository .diff-stats li{border-color:var(--color-secondary)}.tag-code,.tag-code td{background:#303030!important}.tag-code td.lines-num{background-color:#3a3e4c!important}.tag-code td.lines-type-marker,td.blob-hunk{color:#dbdbdb!important}.ui.attached.info.message,.ui.info.message{box-shadow:0 0 0 1px #4b5e71 inset,0 0 transparent}.ui.bottom.attached.message{background-color:#2c662d;color:#df0000}.ui.bottom.attached.message .pull-right{color:#df0000}.ui.info.message{background-color:#2c3b4a;color:#9ebcc5}.ui .warning.header,.ui.warning.message{background-color:#542!important;border-color:#ec8}.ui.warning.message{color:#ec8;box-shadow:0 0 0 1px #ec8}.ui.warning.segment{border-color:#ec8}.ui.red.message,.ui.error.message{background-color:#522;color:#f9cbcb;box-shadow:0 0 0 1px #a04141 inset}.ui .error.header,.ui.error.message{background-color:#522!important;border-color:#a04141}.ui.error.segment{border-color:#a04141}.ui.red.button,.ui.red.buttons .button{background-color:#7d3434}.ui.red.button:hover,.ui.red.buttons .button:hover{background-color:#984646}.ui.positive.message{background-color:#0d491b;color:#df0000;box-shadow:0 0 0 1px #2d693b inset,0 0 transparent}.ui.negative.message{background-color:#50171199;color:#f9cbcb;box-shadow:0 0 0 1px #79474280 inset,0 0 transparent}.ui.list .list>.item .header,.ui.list>.item .header{color:#dedede}.ui.list .list>.item .description,.ui.list>.item .description{color:var(--color-secondary-dark-6)}.repository.file.list #repo-files-table tbody .svg.octicon-file-directory,.repository.file.list #repo-files-table tbody .svg.octicon-file-submodule{color:#7c9b5e}.repository.labels .ui.basic.black.label{background-color:#bbb!important}.lines-num{color:var(--color-secondary-dark-6)!important;border-color:var(--color-secondary)!important}td.blob-excerpt{background-color:#00000026}.lines-code.active,.lines-code .active{background:#534d1b!important}.ui.ui.ui.ui.table tr.active,.ui.ui.table td.active{color:#dbdbdb}.ui.active.label{background:#393d4a;border-color:#393d4a;color:#dbdbdb}.repository .ui.attached.message.isSigned.isVerified{background-color:#394829;color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerified.message{color:#df0000}.repository .ui.attached.message.isSigned.isVerified.message .ui.text{color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerified.message .pull-right{color:#df0000}.repository .ui.attached.message.isSigned.isVerifiedUntrusted{background-color:#4a3903;color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerifiedUntrusted.message{color:#c2c193}.repository .ui.attached.message.isSigned.isVerifiedUntrusted.message .ui.text{color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerifiedUntrusted.message a{color:#c2c193}.repository .ui.attached.message.isSigned.isVerifiedUnmatched{background-color:#4e3321;color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerifiedUnmatched.message{color:#c2a893}.repository .ui.attached.message.isSigned.isVerifiedUnmatched.message .ui.text{color:var(--color-secondary-dark-6)}.repository .ui.attached.message.isSigned.isVerifiedUnmatched.message a{color:#c2a893}.repository .ui.attached.message.isSigned.isWarning{background-color:#50171199}.repository .ui.attached.message.isSigned.isWarning.message{color:#d07d7d}.repository .ui.attached.message.isSigned.isWarning.message .ui.text{color:#d07d7d}.ui.header .sub.header{color:var(--color-secondary-dark-6)}.ui.dividing.header{border-bottom:1px solid var(--color-secondary)}.ui.modal>.header{background:var(--color-secondary);color:#dbdbdb}.ui.modal>.actions{background:var(--color-secondary);border-color:var(--color-secondary)}.ui.modal>.content{background:#000000}.minicolors-panel{background:var(--color-secondary)!important;border-color:#6a737d!important}.emoji[aria-label="check mark"],.emoji[aria-label="currency exchange"],.emoji[aria-label="TOP arrow"],.emoji[aria-label="END arrow"],.emoji[aria-label="ON! arrow"],.emoji[aria-label="SOON arrow"],.emoji[aria-label="heavy dollar sign"],.emoji[aria-label=copyright],.emoji[aria-label=registered],.emoji[aria-label="trade mark"],.emoji[aria-label=multiply],.emoji[aria-label=plus],.emoji[aria-label=minus],.emoji[aria-label=divide],.emoji[aria-label="curly loop"],.emoji[aria-label="double curly loop"],.emoji[aria-label="wavy dash"],.emoji[aria-label="paw prints"],.emoji[aria-label="musical note"],.emoji[aria-label="musical notes"]{filter:invert(100%)}.edit-diff>div>.ui.table{border-left-color:var(--color-secondary)!important;border-right-color:var(--color-secondary)!important}.CodeMirror.cm-s-default .cm-property,.CodeMirror.cm-s-paper .cm-property{color:#af0000}.CodeMirror.cm-s-default .cm-header,.CodeMirror.cm-s-paper .cm-header{color:#9daccc}.CodeMirror.cm-s-default .cm-quote,.CodeMirror.cm-s-paper .cm-quote{color:#090}.CodeMirror.cm-s-default .cm-keyword,.CodeMirror.cm-s-paper .cm-keyword{color:#cc8a61}.CodeMirror.cm-s-default .cm-atom,.CodeMirror.cm-s-paper .cm-atom{color:#ef5e77}.CodeMirror.cm-s-default .cm-number,.CodeMirror.cm-s-paper .cm-number{color:#ff5656}.CodeMirror.cm-s-default .cm-def,.CodeMirror.cm-s-paper .cm-def{color:#e4e4e4}.CodeMirror.cm-s-default .cm-variable-2,.CodeMirror.cm-s-paper .cm-variable-2{color:#00bdbf}.CodeMirror.cm-s-default .cm-variable-3,.CodeMirror.cm-s-paper .cm-variable-3{color:#085}.CodeMirror.cm-s-default .cm-comment,.CodeMirror.cm-s-paper .cm-comment{color:#8e9ab3}.CodeMirror.cm-s-default .cm-string,.CodeMirror.cm-s-paper .cm-string{color:#a77272}.CodeMirror.cm-s-default .cm-string-2,.CodeMirror.cm-s-paper .cm-string-2{color:#f50}.CodeMirror.cm-s-default .cm-meta,.CodeMirror.cm-s-paper .cm-meta,.CodeMirror.cm-s-default .cm-qualifier,.CodeMirror.cm-s-paper .cm-qualifier{color:#ffb176}.CodeMirror.cm-s-default .cm-builtin,.CodeMirror.cm-s-paper .cm-builtin{color:#b7c951}.CodeMirror.cm-s-default .cm-bracket,.CodeMirror.cm-s-paper .cm-bracket{color:#997}.CodeMirror.cm-s-default .cm-tag,.CodeMirror.cm-s-paper .cm-tag{color:#f1d273}.CodeMirror.cm-s-default .cm-attribute,.CodeMirror.cm-s-paper .cm-attribute{color:#bfcc70}.CodeMirror.cm-s-default .cm-hr,.CodeMirror.cm-s-paper .cm-hr{color:#999}.CodeMirror.cm-s-default .cm-url,.CodeMirror.cm-s-paper .cm-url{color:#c5cfd0}.CodeMirror.cm-s-default .cm-link,.CodeMirror.cm-s-paper .cm-link{color:#d8c792}.CodeMirror.cm-s-default .cm-error,.CodeMirror.cm-s-paper .cm-error{color:#dbdbeb}footer .container .links>*{border-left-color:#888}.repository.file.list #repo-files-table tbody .svg{color:var(--color-secondary-dark-6)}.repository.release #release-list>li .detail .dot{background-color:#505667;border-color:#000000}.tribute-container{box-shadow:0 .25rem .5rem #0009}.repository .repo-header .ui.huge.breadcrumb.repo-title .repo-header-icon .avatar{color:#2a2a2a}img[src$="/img/matrix.svg"]{filter:invert(80%)}#git-graph-container li .time{color:#6a737d}#git-graph-container.monochrome #rel-container .flow-group{stroke:#696969;fill:#696969}#git-graph-container.monochrome #rel-container .flow-group.highlight{stroke:#a9a9a9;fill:#a9a9a9}#git-graph-container:not(.monochrome) #rel-container .flow-group.flow-color-16-5{stroke:#5543b1;fill:#5543b1}#git-graph-container:not(.monochrome) #rel-container .flow-group.highlight.flow-color-16-5{stroke:#7058e6;fill:#7058e6}#git-graph-container #rev-list li.highlight.hover{background-color:#ffffff1a}#git-graph-container .ui.buttons button#flow-color-monochrome.ui.button{border-left-color:#4c505c;border-left-style:solid;border-left-width:1px}.mermaid-chart{filter:invert(84%) hue-rotate(180deg)}.is-loading:after{border-color:#4a4c58 #4a4c58 #d7d7da #d7d7da}.markup-block-error{border:1px solid rgba(121,71,66,.5)!important;border-bottom:none!important} - -.home a { - color: #df0000; -} -.bounding { - border: 1px solid #FFF; - border-radius: 15px; - margin: 0; - margin-top: 20px; - padding: 10px; - background-color: #000; - margin-bottom: 30px; - display: block; -} - diff --git a/roles/Foundation/files/custom/public/thank-you.html b/roles/Foundation/files/custom/public/thank-you.html deleted file mode 100755 index d859aea..0000000 --- a/roles/Foundation/files/custom/public/thank-you.html +++ /dev/null @@ -1,271 +0,0 @@ - - - - - - - AniNIX - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - -
-

Thank you for your purchase!

- - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/roles/Foundation/files/custom/templates/custom/header.tmpl b/roles/Foundation/files/custom/templates/custom/header.tmpl index a86d7e6..1761115 100644 --- a/roles/Foundation/files/custom/templates/custom/header.tmpl +++ b/roles/Foundation/files/custom/templates/custom/header.tmpl @@ -2,3 +2,4 @@ + diff --git a/roles/Foundation/files/custom/templates/home.tmpl b/roles/Foundation/files/custom/templates/home.tmpl index 3121b66..16bf06d 100644 --- a/roles/Foundation/files/custom/templates/home.tmpl +++ b/roles/Foundation/files/custom/templates/home.tmpl @@ -49,7 +49,7 @@ Downloads

- We offer downloads from our AniNIX::Maat continuous-deployment system, including static files and packages for ArchLinux-style distributions. + We offer downloads from our AniNIX/Maat continuous-deployment system, including static files and packages for ArchLinux-style distributions.

@@ -67,6 +67,12 @@
+
+
+ +

Follow us on social media

diff --git a/roles/Foundation/files/web-snippets/martialarts/index b/roles/Foundation/files/web-snippets/martialarts/index index 39db15d..412378a 100644 --- a/roles/Foundation/files/web-snippets/martialarts/index +++ b/roles/Foundation/files/web-snippets/martialarts/index @@ -62,6 +62,10 @@

+
+
diff --git a/roles/Foundation/files/web-snippets/pay/index b/roles/Foundation/files/web-snippets/pay/index deleted file mode 100644 index d26bfaf..0000000 --- a/roles/Foundation/files/web-snippets/pay/index +++ /dev/null @@ -1,82 +0,0 @@ -
-
- -
- -
-
-

- AniNIX Martial Arts -

-

Open-source, research-driven self-defense and personal health

-

AniNIX Martial Arts is a small martial arts collective focusing on research-driven martial arts. Our core style is USHF HapKiDo, but we are influenced by HEMA, Razmafzar, Kali, Shaolin, Silat, JKD, BJJ, and many other systems. We are a research-driven group -- we encourage cross-training with other systems and will bring in new concepts regularly. The class is open to all experience levels, gender identity, gender expression, sexual orientation, religious or cultural identity, socioecomic status, or age (above 14), in Southcentral Wisconsin -- we will fit your training to your needs and goals.

Drop-ins are welcome, and registration is cheap. We hope you'll give us a chance to show you what we can do.

-
-
-
-
-
-

- - Open-source -

-

- We want your training with our system to become a part of your life. This means that we provide access to a revision-controlled copy of our notes that all our students can download, keep, and contribute to. We're tired of the old era where how the system works is kept hidden from students and piecemealed out as a marketing ploy -- we want to be as trasparent as possible in how our program and our martial art function. Transparency keeps our instructors honest and our students engaged -- this means a better martial arts experience for everyone. -

-
-
-

- - Research-driven -

-

- Our system is always growing. We are a United States HapKiDo Federation (USHF) school, and that gives us access to high-quality instructors and seminar material each year from across the US. We also maintain good relationships with other schools in our area -- we want our students to examine what they're learing and make sure that it works, and that means looking at different perspectives. -

-
-
-
-

- - Low-cost -

-

We are non-profit group -- we train because we feel like it makes life better, not to make money. As such, our costs are publicly documented and our rates match the same. Classes will be informed of potential changes to costs well in advance, and we use recurring payments. We want you thinking about your training, not how you're going to pay for it.

-

-

    -
  • Cost: $10 per month in-person; $5 per month livestream -- pay below.
  • -
  • Lessons:Tuesdays 7-8:30 p.m.
  • -
  • Sparring:Tuesdays 6-7 p.m.
  • -
  • Shaolin Workouts: Saturday mornings at 8 a.m.
  • -
  • Location: 225 Blaser Drive, Belleville, WI
  • -
  • What to bring: Exercise clothes and water
  • -

-
-
-

- - Real-life First -

-

- Everyone is welcome! Class attendance is not mandated and belt-testing is not required to train. As a courtesy, please inform the class of your absence or intended late arrival -- real-life comes first, and we're happy to work with your needs. As long as one person shows, we'll have class -- the smaller the class, the more tailored it is, but the bigger classes mean more partners and body types.

-

- Our focus is also on what you will actually use. While we appreciate traditional and esoteric training for self-development, our weekly classes are focused on modern techniques and training methods so that you get the most out of your time. Our goal is to help create a community of prepared and healthy citizens, and we believe martial arts helps build that in a way no other activity can. -

-
-
-
-
-
-
-

Follow us on social media

-

We want to stay in touch with you, so we are present on the social media platforms we find applicable.
Have one you want us on? Contact us and let us know!

-
-
-

 

-
RSS
-
Discord
-
NextDoor
-
-
-
-

 

-
-
-
diff --git a/roles/Foundation/tasks/main.yml b/roles/Foundation/tasks/main.yml index f656a5e..5e656ff 100644 --- a/roles/Foundation/tasks/main.yml +++ b/roles/Foundation/tasks/main.yml @@ -59,20 +59,6 @@ owner: gitea group: gitea - - name: Ensure internal service disabled - become: yes - ignore_errors: yes - service: - name: foundation - state: stopped - enabled: no - - - name: Ensure internal service is absent - become: yes - file: - path: /usr/lib/systemd/system/foundation.service - state: absent - - name: Generate pages become: yes register: custompages diff --git a/roles/Foundation/templates/app.ini.j2 b/roles/Foundation/templates/app.ini.j2 index 8b8fb09..9f8edd2 100644 --- a/roles/Foundation/templates/app.ini.j2 +++ b/roles/Foundation/templates/app.ini.j2 @@ -8,35 +8,36 @@ APP_NAME = AniNIX RUN_USER = gitea ; Either "dev", "prod" or "test", default is "dev" RUN_MODE = prod +WORK_PATH = /var/lib/gitea [repository] -ROOT = repos -SCRIPT_TYPE = bash +ROOT = repos +SCRIPT_TYPE = bash ; Default ANSI charset -ANSI_CHARSET = +ANSI_CHARSET = ; Force every new repository to be private -FORCE_PRIVATE = false +FORCE_PRIVATE = false ; Default privacy setting when creating a new repository, allowed values: last, private, public. Default is last which means the last setting used. -DEFAULT_PRIVATE = last +DEFAULT_PRIVATE = last ; Global limit of repositories per user, applied at creation time. -1 means no limit -MAX_CREATION_LIMIT = -1 +MAX_CREATION_LIMIT = -1 ; Preferred Licenses to place at the top of the List ; The name here must match the filename in conf/license or custom/conf/license -PREFERRED_LICENSES = AniNIX-WTFPL +PREFERRED_LICENSES = AniNIX-WTFPL ; Disable the ability to interact with repositories using the HTTP protocol -DISABLE_HTTP_GIT = false +DISABLE_HTTP_GIT = false ; Value for Access-Control-Allow-Origin header, default is not to present ; WARNING: This maybe harmful to you website if you do not give it a right value. -ACCESS_CONTROL_ALLOW_ORIGIN = +ACCESS_CONTROL_ALLOW_ORIGIN = ; Force ssh:// clone url instead of scp-style uri when default SSH port is used -USE_COMPAT_SSH_URI = false +USE_COMPAT_SSH_URI = false ; Close issues as long as a commit on any branch marks it as fixed DEFAULT_CLOSE_ISSUES_VIA_COMMITS_IN_ANY_BRANCH = false [repository.editor] ; List of file extensions for which lines should be wrapped in the CodeMirror editor ; Separate extensions with a comma. To line wrap files without an extension, just put a comma -LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd, +LINE_WRAP_EXTENSIONS = .txt,.md,.markdown,.mdown,.mkd, ; Valid file modes that have a preview API associated with them, such as api/v1/markdown ; Separate the values by commas. The preview tab in edit mode won't be displayed if the file extension doesn't match PREVIEWABLE_FILE_MODES = markdown @@ -49,15 +50,15 @@ LOCAL_WIKI_PATH = tmp/local-wiki [repository.upload] ; Whether repository file uploads are enabled. Defaults to `true` -ENABLED = true +ENABLED = true ; Path for uploads. Defaults to `data/tmp/uploads` (tmp gets deleted on gitea restart) -TEMP_PATH = data/tmp/uploads +TEMP_PATH = data/tmp/uploads ; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type ALLOWED_TYPES = ; Max size of each file in megabytes. Defaults to 3MB FILE_MAX_SIZE = 3 ; Max number of files per upload. Defaults to 5 -MAX_FILES = 5 +MAX_FILES = 5 [repository.pull-request] ; List of prefixes used in Pull Request title to mark them as Work In Progress @@ -70,138 +71,138 @@ LOCK_REASONS = Too heated,Off-topic,Resolved,Spam [cors] ; More information about CORS can be found here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#The_HTTP_response_headers ; enable cors headers (disabled by default) -ENABLED = false +ENABLED = false ; scheme of allowed requests -SCHEME = http +SCHEME = http ; list of requesting domains that are allowed -ALLOW_DOMAIN = * +ALLOW_DOMAIN = * ; allow subdomains of headers listed above to request -ALLOW_SUBDOMAIN = false +ALLOW_SUBDOMAIN = false ; list of methods allowed to request -METHODS = GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS +METHODS = GET,HEAD,POST,PUT,PATCH,DELETE,OPTIONS ; max time to cache response -MAX_AGE = 10m +MAX_AGE = 10m ; allow request with credentials ALLOW_CREDENTIALS = false [ui] ; Number of repositories that are displayed on one explore page -EXPLORE_PAGING_NUM = 20 +EXPLORE_PAGING_NUM = 20 ; Number of issues that are displayed on one page -ISSUE_PAGING_NUM = 10 +ISSUE_PAGING_NUM = 10 ; Number of maximum commits displayed in one activity feed -FEED_MAX_COMMIT_NUM = 5 +FEED_MAX_COMMIT_NUM = 5 ; Number of maximum commits displayed in commit graph. -GRAPH_MAX_COMMIT_NUM = 100 +GRAPH_MAX_COMMIT_NUM = 100 ; Number of line of codes shown for a code comment -CODE_COMMENT_LINES = 4 +CODE_COMMENT_LINES = 4 ; Value of `theme-color` meta tag, used by Android >= 5.0 ; An invalid color like "none" or "disable" will have the default style ; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android -THEME_COLOR_META_TAG = `#ff0000` +THEME_COLOR_META_TAG = `#ff0000` ; Max size of files to be displayed (default is 8MiB) -MAX_DISPLAY_FILE_SIZE = 8388608 +MAX_DISPLAY_FILE_SIZE = 8388608 ; Whether the email of the user should be shown in the Explore Users page -SHOW_USER_EMAIL = true +SHOW_USER_EMAIL = true ; Set the default theme for the Gitea install -DEFAULT_THEME = aninix +DEFAULT_THEME = aninix ; All available themes. Allow users select personalized themes regardless of the value of `DEFAULT_THEME`. -THEMES = gitea,arc-green,aninix +THEMES = gitea,arc-green,aninix ; Whether the full name of the users should be shown where possible. If the full name isn't set, the username will be used. DEFAULT_SHOW_FULL_NAME = false [ui.admin] ; Number of users that are displayed on one page -USER_PAGING_NUM = 50 +USER_PAGING_NUM = 50 ; Number of repos that are displayed on one page -REPO_PAGING_NUM = 50 +REPO_PAGING_NUM = 50 ; Number of notices that are displayed on one page NOTICE_PAGING_NUM = 25 ; Number of organizations that are displayed on one page -ORG_PAGING_NUM = 50 +ORG_PAGING_NUM = 50 [ui.user] ; Number of repos that are displayed on one page REPO_PAGING_NUM = 15 [ui.meta] -AUTHOR = AniNIX::Foundation -DESCRIPTION = AniNIX::Foundation \\ Code, documentation, and information sharing powered by Gitea (git with a cup of tea) -KEYWORDS = go,git,self-hosted,gitea,aninix,aninix::foundation +AUTHOR = AniNIX/Foundation +DESCRIPTION = AniNIX/Foundation | Code, documentation, and information sharing powered by Gitea (git with a cup of tea) +KEYWORDS = go,git,self-hosted,gitea,aninix,aninix::foundation [markdown] ; Enable hard line break extension ENABLE_HARD_LINE_BREAK = false ; List of custom URL-Schemes that are allowed as links when rendering Markdown ; for example git,magnet -CUSTOM_URL_SCHEMES = +CUSTOM_URL_SCHEMES = ; List of file extensions that should be rendered/edited as Markdown ; Separate the extensions with a comma. To render files without any extension as markdown, just put a comma -FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd +FILE_EXTENSIONS = .md,.markdown,.mdown,.mkd [server] ; The protocol the server listens on. One of 'http', 'https', 'unix' or 'fcgi'. -PROTOCOL = http -DOMAIN = {{ external_domain }} -ROOT_URL = https://{{ external_domain }}/ +PROTOCOL = http +DOMAIN = {{ external_domain }} +ROOT_URL = https://{{ external_domain }}/ ; The address to listen on. Either a IPv4/IPv6 address or the path to a unix socket. -HTTP_ADDR = 0.0.0.0 -HTTP_PORT = 3000 +HTTP_ADDR = 0.0.0.0 +HTTP_PORT = 3000 ; If REDIRECT_OTHER_PORT is true, and PROTOCOL is set to https an http server ; will be started on PORT_TO_REDIRECT and it will redirect plain, non-secure http requests to the main ; ROOT_URL. Defaults are false for REDIRECT_OTHER_PORT and 80 for ; PORT_TO_REDIRECT. -REDIRECT_OTHER_PORT = false -PORT_TO_REDIRECT = 3000 +REDIRECT_OTHER_PORT = false +PORT_TO_REDIRECT = 3000 ; Permission for unix socket -UNIX_SOCKET_PERMISSION = 660 +UNIX_SOCKET_PERMISSION = 660 ; Local (DMZ) URL for Gitea workers (such as SSH update) accessing web service. ; In most cases you do not need to change the default value. ; Alter it only if your SSH server node is not the same as HTTP node. ; Do not set this variable if PROTOCOL is set to 'unix'. -LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/ +LOCAL_ROOT_URL = %(PROTOCOL)s://%(HTTP_ADDR)s:%(HTTP_PORT)s/ ; Disable SSH feature when not available -DISABLE_SSH = false +DISABLE_SSH = false ; Whether to use the builtin SSH server or not. -START_SSH_SERVER = false +START_SSH_SERVER = false ; Username to use for the builtin SSH server. If blank, then it is the value of RUN_USER. -BUILTIN_SSH_SERVER_USER = +BUILTIN_SSH_SERVER_USER = ; Domain name to be exposed in clone URL -SSH_DOMAIN = foundation.aninix.net +SSH_DOMAIN = foundation.aninix.net ; The network interface the builtin SSH server should listen on -SSH_LISTEN_HOST = +SSH_LISTEN_HOST = ; Port number to be exposed in clone URL -SSH_PORT = 22 +SSH_PORT = 22 ; The port number the builtin SSH server should listen on -SSH_LISTEN_PORT = %(SSH_PORT)s +SSH_LISTEN_PORT = %(SSH_PORT)s ; Root path of SSH directory, default is '~/.ssh', but you have to use '/home/git/.ssh'. -SSH_ROOT_PATH = +SSH_ROOT_PATH = ; Gitea will create a authorized_keys file by default when it is not using the internal ssh server ; If you intend to use the AuthorizedKeysCommand functionality then you should turn this off. SSH_CREATE_AUTHORIZED_KEYS_FILE = true ; For the built-in SSH server, choose the ciphers to support for SSH connections, ; for system SSH this setting has no effect -SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128 +SSH_SERVER_CIPHERS = aes128-ctr, aes192-ctr, aes256-ctr, aes128-gcm@openssh.com, arcfour256, arcfour128 ; For the built-in SSH server, choose the key exchange algorithms to support for SSH connections, ; for system SSH this setting has no effect -SSH_SERVER_KEY_EXCHANGES = diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, curve25519-sha256@libssh.org +SSH_SERVER_KEY_EXCHANGES = diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, ecdh-sha2-nistp256, ecdh-sha2-nistp384, ecdh-sha2-nistp521, curve25519-sha256@libssh.org ; For the built-in SSH server, choose the MACs to support for SSH connections, ; for system SSH this setting has no effect -SSH_SERVER_MACS = hmac-sha2-256-etm@openssh.com, hmac-sha2-256, hmac-sha1, hmac-sha1-96 +SSH_SERVER_MACS = hmac-sha2-256-etm@openssh.com, hmac-sha2-256, hmac-sha1, hmac-sha1-96 ; Directory to create temporary files in when testing public keys using ssh-keygen, ; default is the system temporary directory. -SSH_KEY_TEST_PATH = +SSH_KEY_TEST_PATH = ; Path to ssh-keygen, default is 'ssh-keygen' which means the shell is responsible for finding out which one to call. -SSH_KEYGEN_PATH = ssh-keygen +SSH_KEYGEN_PATH = ssh-keygen ; Enable SSH Authorized Key Backup when rewriting all keys, default is true -SSH_BACKUP_AUTHORIZED_KEYS = true +SSH_BACKUP_AUTHORIZED_KEYS = true ; Enable exposure of SSH clone URL to anonymous visitors, default is false -SSH_EXPOSE_ANONYMOUS = false +SSH_EXPOSE_ANONYMOUS = false ; Indicate whether to check minimum key size with corresponding type -MINIMUM_KEY_SIZE_CHECK = false +MINIMUM_KEY_SIZE_CHECK = false ; Disable CDN even in "prod" mode -OFFLINE_MODE = true -DISABLE_ROUTER_LOG = false +OFFLINE_MODE = true +DISABLE_ROUTER_LOG = false ; Generate steps: ; $ ./gitea cert -ca=true -duration=8760h0m0s -host=myhost.example.com ; @@ -209,30 +210,30 @@ DISABLE_ROUTER_LOG = false ; not forget to export the private key): ; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys ; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes -CERT_FILE = custom/https/cert.pem -KEY_FILE = custom/https/key.pem +CERT_FILE = custom/https/cert.pem +KEY_FILE = custom/https/key.pem ; Root directory containing templates and static files. ; default is the path where Gitea is executed -STATIC_ROOT_PATH = /usr/share/gitea +STATIC_ROOT_PATH = /usr/share/gitea ; Default path for App data -APP_DATA_PATH = data +APP_DATA_PATH = data ; Application level GZIP support -ENABLE_GZIP = false +ENABLE_GZIP = false ; Application profiling (memory and cpu) ; For "web" command it listens on localhost:6060 ; For "serve" command it dumps to disk at PPROF_DATA_PATH as (cpuprofile|memprofile)__ -ENABLE_PPROF = false +ENABLE_PPROF = false ; PPROF_DATA_PATH, use an absolute path when you start gitea as service -PPROF_DATA_PATH = data/tmp/pprof +PPROF_DATA_PATH = data/tmp/pprof ; Landing page, can be "home", "explore", or "organizations" -LANDING_PAGE = home +LANDING_PAGE = home ; Enables git-lfs support. true or false, default is false. -LFS_START_SERVER = true +LFS_START_SERVER = true ; Where your lfs files reside, default is data/lfs. ; LFS authentication secret, change this yourself -LFS_JWT_SECRET = {{ secrets.Foundation.lfs_jwt_secret }} +LFS_JWT_SECRET = {{ secrets.Foundation.lfs_jwt_secret }} ; LFS authentication validity period (in time.Duration), pushes taking longer than this may fail. -LFS_HTTP_AUTH_EXPIRY = 20m +LFS_HTTP_AUTH_EXPIRY = 20m [lfs] PATH = data/lfs @@ -240,47 +241,47 @@ PATH = data/lfs ; Define allowed algorithms and their minimum key length (use -1 to disable a type) [ssh.minimum_key_sizes] ED25519 = 256 -ECDSA = 256 -RSA = 2048 -DSA = 1024 +ECDSA = 256 +RSA = 2048 +DSA = 1024 [database] ; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice -DB_TYPE = postgres -HOST = 127.0.0.1:5432 -NAME = gitea -USER = gitea +DB_TYPE = postgres +HOST = 127.0.0.1:5432 +NAME = gitea +USER = gitea ; Use PASSWD = `your password` for quoting if you use special characters in the password. -PASSWD = {{ secrets.Foundation.database_password }} +PASSWD = {{ secrets.Foundation.database_password }} ; For Postgres, either "disable" (default), "require", or "verify-full" ; For MySQL, either "false" (default), "true", or "skip-verify" -SSL_MODE = disable +SSL_MODE = disable ; For MySQL only, either "utf8" or "utf8mb4", default is "utf8". ; NOTICE: for "utf8mb4" you must use MySQL InnoDB > 5.6. Gitea is unable to check this. -CHARSET = utf8 +CHARSET = utf8 ; For "sqlite3" and "tidb", use an absolute path when you start gitea as service -PATH = data/gitea.db +PATH = data/gitea.db ; For "sqlite3" only. Query timeout -SQLITE_TIMEOUT = 500 +SQLITE_TIMEOUT = 500 ; For iterate buffer, default is 50 ITERATE_BUFFER_SIZE = 50 ; Show the database generated SQL -LOG_SQL = false +LOG_SQL = false ; Maximum number of DB Connect retries -DB_RETRIES = 10 +DB_RETRIES = 10 ; Backoff time per DB retry (time.Duration) -DB_RETRY_BACKOFF = 3s +DB_RETRY_BACKOFF = 3s [indexer] ; Issue indexer type, currently support: bleve or db, default is bleve -ISSUE_INDEXER_TYPE = bleve +ISSUE_INDEXER_TYPE = bleve ; Issue indexer storage path, available when ISSUE_INDEXER_TYPE is bleve -ISSUE_INDEXER_PATH = indexers/issues.bleve +ISSUE_INDEXER_PATH = indexers/issues.bleve ; When `ISSUE_INDEXER_QUEUE_TYPE` is `redis`, this will store the redis connection string. ; repo indexer by default disabled, since it uses a lot of disk space -REPO_INDEXER_ENABLED = false -REPO_INDEXER_PATH = indexers/repos.bleve -MAX_FILE_SIZE = 1048576 +REPO_INDEXER_ENABLED = false +REPO_INDEXER_PATH = indexers/repos.bleve +MAX_FILE_SIZE = 1048576 [admin] ; Disallow regular (non-admin) users from creating organizations. @@ -288,23 +289,23 @@ DISABLE_REGULAR_ORG_CREATION = true [security] ; Whether the installer is disabled -INSTALL_LOCK = true +INSTALL_LOCK = true ; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!! -SECRET_KEY = {{ secrets.Foundation.secret_key }} +SECRET_KEY = {{ secrets.Foundation.secret_key }} ; How long to remember that an user is logged in before requiring relogin (in days) -LOGIN_REMEMBER_DAYS = 7 -COOKIE_USERNAME = gitea_awesome -COOKIE_REMEMBER_NAME = gitea_incredible +LOGIN_REMEMBER_DAYS = 7 +COOKIE_USERNAME = gitea_awesome +COOKIE_REMEMBER_NAME = gitea_incredible ; Reverse proxy authentication header name of user name -REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER +REVERSE_PROXY_AUTHENTICATION_USER = X-WEBAUTH-USER REVERSE_PROXY_AUTHENTICATION_EMAIL = X-WEBAUTH-EMAIL ; The minimum password length for new Users -MIN_PASSWORD_LENGTH = 6 +MIN_PASSWORD_LENGTH = 6 ; Set to true to allow users to import local server paths -IMPORT_LOCAL_PATHS = false +IMPORT_LOCAL_PATHS = false ; Set to true to prevent all users (including admin) from creating custom git hooks -DISABLE_GIT_HOOKS = false -INTERNAL_TOKEN = {{ secrets.Foundation.internal_token }} +DISABLE_GIT_HOOKS = false +INTERNAL_TOKEN = {{ secrets.Foundation.internal_token }} [openid] ; @@ -333,164 +334,164 @@ ENABLE_OPENID_SIGNIN = FALSE ; Space separated. ; Only these would be allowed if non-blank. ; Example value: trusted.domain.org trusted.domain.net -WHITELISTED_URIS = +WHITELISTED_URIS = ; Forbidden URI patterns (POSIX regexp). ; Space separated. ; Only used if WHITELISTED_URIS is blank. ; Example value: loadaverage.org/badguy stackexchange.com/.*spammer -BLACKLISTED_URIS = +BLACKLISTED_URIS = ENABLE_OPENID_SIGNUP = false [service] ; Time limit to confirm account/email registration -ACTIVE_CODE_LIVE_MINUTES = 180 +ACTIVE_CODE_LIVE_MINUTES = 180 ; Time limit to perform the reset of a forgotten password -RESET_PASSWD_CODE_LIVE_MINUTES = 180 +RESET_PASSWD_CODE_LIVE_MINUTES = 180 ; Whether a new user needs to confirm their email when registering. -REGISTER_EMAIL_CONFIRM = false +REGISTER_EMAIL_CONFIRM = false ; List of domain names that are allowed to be used to register on a Gitea instance ; gitea.io,example.com -EMAIL_DOMAIN_ALLOWLIST = +EMAIL_DOMAIN_ALLOWLIST = ; Disallow registration, only allow admins to create accounts. -DISABLE_REGISTRATION = true +DISABLE_REGISTRATION = true ; Allow registration only using third-party services, it works only when DISABLE_REGISTRATION is false -ALLOW_ONLY_EXTERNAL_REGISTRATION = false +ALLOW_ONLY_EXTERNAL_REGISTRATION = false ; User must sign in to view anything. -REQUIRE_SIGNIN_VIEW = false +REQUIRE_SIGNIN_VIEW = false ; Mail notification -ENABLE_NOTIFY_MAIL = false +ENABLE_NOTIFY_MAIL = false ; More detail: https://github.com/gogits/gogs/issues/165 -ENABLE_REVERSE_PROXY_AUTHENTICATION = false -ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false -ENABLE_REVERSE_PROXY_EMAIL = false +ENABLE_REVERSE_PROXY_AUTHENTICATION = false +ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false +ENABLE_REVERSE_PROXY_EMAIL = false ; Enable captcha validation for registration -ENABLE_CAPTCHA = false +ENABLE_CAPTCHA = false ; Type of captcha you want to use. Options: image, recaptcha -CAPTCHA_TYPE = image +CAPTCHA_TYPE = image ; Enable recaptcha to use Google's recaptcha service ; Go to https://www.google.com/recaptcha/admin to sign up for a key -RECAPTCHA_SECRET = -RECAPTCHA_SITEKEY = +RECAPTCHA_SECRET = +RECAPTCHA_SITEKEY = ; Change this to use recaptcha.net or other recaptcha service -RECAPTCHA_URL = https://www.google.com/recaptcha/ +RECAPTCHA_URL = https://www.google.com/recaptcha/ ; Default value for KeepEmailPrivate ; Each new user will get the value of this setting copied into their profile -DEFAULT_KEEP_EMAIL_PRIVATE = false +DEFAULT_KEEP_EMAIL_PRIVATE = false ; Default value for AllowCreateOrganization ; Every new user will have rights set to create organizations depending on this setting -DEFAULT_ALLOW_CREATE_ORGANIZATION = false +DEFAULT_ALLOW_CREATE_ORGANIZATION = false ; Either "public", "limited" or "private", default is "public" ; Limited is for signed user only ; Private is only for member of the organization ; Public is for everyone -DEFAULT_ORG_VISIBILITY = public +DEFAULT_ORG_VISIBILITY = public ; Default value for EnableDependencies ; Repositories will use dependencies by default depending on this setting -DEFAULT_ENABLE_DEPENDENCIES = true +DEFAULT_ENABLE_DEPENDENCIES = true ; Enable heatmap on users profiles. -ENABLE_USER_HEATMAP = true +ENABLE_USER_HEATMAP = true ; Enable Timetracking -ENABLE_TIMETRACKING = true +ENABLE_TIMETRACKING = true ; Default value for EnableTimetracking ; Repositories will use timetracking by default depending on this setting -DEFAULT_ENABLE_TIMETRACKING = true +DEFAULT_ENABLE_TIMETRACKING = true ; Default value for AllowOnlyContributorsToTrackTime ; Only users with write permissions can track time if this is true DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = true ; Default value for the domain part of the user's email address in the git log ; if he has set KeepEmailPrivate to true. The user's email will be replaced with a ; concatenation of the user name in lower case, "@" and NO_REPLY_ADDRESS. -NO_REPLY_ADDRESS = noreply.aninix.net +NO_REPLY_ADDRESS = noreply.aninix.net ; Show Registration button -SHOW_REGISTRATION_BUTTON = true +SHOW_REGISTRATION_BUTTON = true ; Default value for AutoWatchNewRepos ; When adding a repo to a team or creating a new repo all team members will watch the ; repo automatically if enabled -AUTO_WATCH_NEW_REPOS = true +AUTO_WATCH_NEW_REPOS = true [webhook] ; Hook task queue length, increase if webhook shooting starts hanging -QUEUE_LENGTH = 1000 +QUEUE_LENGTH = 1000 ; Deliver timeout in seconds DELIVER_TIMEOUT = 5 ; Allow insecure certification SKIP_TLS_VERIFY = false ; Number of history information in each page -PAGING_NUM = 10 +PAGING_NUM = 10 ALLOWED_HOST_LIST = ::1/128, 127.0.0.1/32 ; We don't use mail [mailer] -ENABLED = false +ENABLED = false [cache] ; Either "memory", "redis", or "memcache", default is "memory" -ADAPTER = memory +ADAPTER = memory ; For "memory" only, GC interval in seconds, default is 60 INTERVAL = 60 ; For "redis" and "memcache", connection host address ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180 ; memcache: `127.0.0.1:11211` -HOST = +HOST = ; Time to keep items in cache if not used, default is 16 hours. ; Setting it to 0 disables caching ITEM_TTL = 16h [session] ; Either "memory", "file", or "redis", default is "memory" -PROVIDER = file +PROVIDER = file ; Provider config options ; memory: doesn't have any config yet ; file: session file path, e.g. `data/sessions` ; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180 ; mysql: go-sql-driver/mysql dsn config string, e.g. `root:password@/session_table` -PROVIDER_CONFIG = data/sessions +PROVIDER_CONFIG = data/sessions ; Session cookie name -COOKIE_NAME = i_like_gitea +COOKIE_NAME = i_like_gitea ; If you use session in https only, default is false -COOKIE_SECURE = true +COOKIE_SECURE = true ; Enable set cookie, default is true ENABLE_SET_COOKIE = true ; Session GC time interval in seconds, default is 86400 (1 day) -GC_INTERVAL_TIME = 86400 +GC_INTERVAL_TIME = 86400 ; Session life time in seconds, default is 86400 (1 day) SESSION_LIFE_TIME = 86400 [picture] -AVATAR_UPLOAD_PATH = avatars -REPOSITORY_AVATAR_UPLOAD_PATH = repo-avatars +AVATAR_UPLOAD_PATH = avatars +REPOSITORY_AVATAR_UPLOAD_PATH = repo-avatars ; How Gitea deals with missing repository avatars ; none = no avatar will be displayed; random = random avatar will be displayed; image = default image will be used -REPOSITORY_AVATAR_FALLBACK = none +REPOSITORY_AVATAR_FALLBACK = none REPOSITORY_AVATAR_FALLBACK_IMAGE = /img/repo_default.png ; Max Width and Height of uploaded avatars. ; This is to limit the amount of RAM used when resizing the image. -AVATAR_MAX_WIDTH = 4096 -AVATAR_MAX_HEIGHT = 3072 +AVATAR_MAX_WIDTH = 4096 +AVATAR_MAX_HEIGHT = 3072 ; Maximum alloved file size for uploaded avatars. ; This is to limit the amount of RAM used when resizing the image. -AVATAR_MAX_FILE_SIZE = 1048576 +AVATAR_MAX_FILE_SIZE = 1048576 ; Chinese users can choose "duoshuo" ; or a custom avatar source, like: http://cn.gravatar.com/avatar/ -GRAVATAR_SOURCE = gravatar +GRAVATAR_SOURCE = gravatar ; This value will always be true in offline mode. -DISABLE_GRAVATAR = true +DISABLE_GRAVATAR = true ; Federated avatar lookup uses DNS to discover avatar associated ; with emails, see https://www.libravatar.org ; This value will always be false in offline mode or when Gravatar is disabled. -ENABLE_FEDERATED_AVATAR = false +ENABLE_FEDERATED_AVATAR = false [attachment] ; Whether attachments are enabled. Defaults to `true` -ENABLED = true +ENABLED = true ; Path for attachments. Defaults to `data/attachments` -PATH = data/attachments +PATH = data/attachments ; One or more allowed types, e.g. image/jpeg|image/png ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip ; Max size of each file. Defaults to 4MB -MAX_SIZE = 4 +MAX_SIZE = 4 ; Max number of files per upload. Defaults to 5 -MAX_FILES = 5 +MAX_FILES = 5 [time] ; Specifies the format for fully outputted dates. Defaults to RFC1123 @@ -499,33 +500,28 @@ MAX_FILES = 5 FORMAT = [log] -ROOT_PATH = %(GITEA_WORK_DIR)/log +ROOT_PATH = /var/log/gitea/ +; Either "console", "file", "conn", "smtp" or "database", default is "console" +; Use comma to separate multiple modes, e.g. "console, file" MODE = console +; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace" LEVEL = Warn +; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "None" STACKTRACE_LEVEL = None logger.router.MODE = , logger.xorm.MODE = , -logger.access.MODE = -ROOT_PATH = /var/log/gitea/ -; Either "console", "file", "conn", "smtp" or "database", default is "console" -; Use comma to separate multiple modes, e.g. "console, file" -MODE = console +logger.access.MODE = console ; Buffer length of the channel, keep it as it is if you don't know what it is. -BUFFER_LEN = 10000 +BUFFER_LEN = 10000 ; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Info" -ACCESS_LOG_TEMPLATE = {{ '{{' }}.Ctx.RemoteAddr{{ '}}' }} - {{ '{{' }}.Identity{{ '}}' }} {{ '{{' }}.Start.Format "[02/Jan/2006:15:04:05 -0700]" {{ '}}' }} "{{ '{{' }}.Ctx.Req.Method{{ '}}' }} {{ '{{' }}.Ctx.Req.RequestURI{{ '}}' }} {{ '{{' }}.Ctx.Req.Proto{{ '}}' }}" {{ '{{' }}.ResponseWriter.Status{{ '}}' }} {{ '{{' }}.ResponseWriter.Size{{ '}}' }} "{{ '{{' }}.Ctx.Req.Referer{{ '}}' }}\" \"{{ '{{' }}.Ctx.Req.UserAgent{{ '}}' }}" -logger.access.MODE = console -; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace" -LEVEL = Warn -; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "None" -STACKTRACE_LEVEL = None +;ACCESS_LOG_TEMPLATE = ; Generic log modes [log.x] -FLAGS = stdflags +FLAGS = stdflags EXPRESSION = -PREFIX = -COLORIZE = false +PREFIX = +COLORIZE = false ; For "console" mode only [log.console] @@ -536,54 +532,54 @@ COLORIZE = true ; For "file" mode only [log.file] -LEVEL = +LEVEL = ; Set the file_name for the logger. If this is a relative path this ; will be relative to ROOT_PATH -FILE_NAME = +FILE_NAME = ; This enables automated log rotate(switch of following options), default is true -LOG_ROTATE = true +LOG_ROTATE = true ; Max number of lines in a single file, default is 1000000 -MAX_LINES = 1000000 +MAX_LINES = 1000000 ; Max size shift of a single file, default is 28 means 1 << 28, 256MB -MAX_SIZE_SHIFT = 28 +MAX_SIZE_SHIFT = 28 ; Segment log daily, default is true -DAILY_ROTATE = true +DAILY_ROTATE = true ; delete the log file after n days, default is 7 -MAX_DAYS = 7 +MAX_DAYS = 7 ; compress logs with gzip -COMPRESS = true +COMPRESS = true ; compression level see godoc for compress/gzip COMPRESSION_LEVEL = -1 ; For "conn" mode only [log.conn] -LEVEL = +LEVEL = ; Reconnect host for every single message, default is false RECONNECT_ON_MSG = false ; Try to reconnect when connection is lost, default is false -RECONNECT = false +RECONNECT = false ; Either "tcp", "unix" or "udp", default is "tcp" -PROTOCOL = tcp +PROTOCOL = tcp ; Host address -ADDR = +ADDR = ; For "smtp" mode only [log.smtp] -LEVEL = +LEVEL = ; Name displayed in mail title, default is "Diagnostic message from server" -SUBJECT = Diagnostic message from server +SUBJECT = Diagnostic message from server ; Mail server -HOST = +HOST = ; Mailer user name and password -USER = +USER = ; Use PASSWD = `your password` for quoting if you use special characters in the password. -PASSWD = +PASSWD = ; Receivers, can be one or more, e.g. 1@example.com,2@example.com RECEIVERS = [cron] ; Enable running cron tasks periodically. -ENABLED = true +ENABLED = true ; Run cron tasks when Gitea starts. RUN_AT_START = false @@ -594,90 +590,90 @@ SCHEDULE = @every 10m ; Repository health check [cron.repo_health_check] SCHEDULE = @every 24h -TIMEOUT = 60s +TIMEOUT = 60s ; Arguments for command 'git fsck', e.g. "--unreachable --tags" ; see more on http://git-scm.com/docs/git-fsck -ARGS = +ARGS = ; Check repository statistics [cron.check_repo_stats] RUN_AT_START = true -SCHEDULE = @every 24h +SCHEDULE = @every 24h ; Clean up old repository archives [cron.archive_cleanup] ; Whether to enable the job -ENABLED = true +ENABLED = true ; Whether to always run at least once at start up time (if ENABLED) RUN_AT_START = true ; Time interval for job to run -SCHEDULE = @every 24h +SCHEDULE = @every 24h ; Archives created more than OLDER_THAN ago are subject to deletion -OLDER_THAN = 24h +OLDER_THAN = 24h ; Synchronize external user data (only LDAP user synchronization is supported) [cron.sync_external_users] ; Synchronize external user data when starting server (default false) -RUN_AT_START = false +RUN_AT_START = false ; Interval as a duration between each synchronization (default every 24h) -SCHEDULE = @every 24h +SCHEDULE = @every 24h ; Create new users, update existing user data and disable users that are not in external source anymore (default) ; or only create new users if UPDATE_EXISTING is set to false UPDATE_EXISTING = true [git] ; Disables highlight of added and removed changes -DISABLE_DIFF_HIGHLIGHT = false +DISABLE_DIFF_HIGHLIGHT = false ; Max number of lines allowed in a single file in diff view -MAX_GIT_DIFF_LINES = 1000 +MAX_GIT_DIFF_LINES = 1000 ; Max number of allowed characters in a line in diff view MAX_GIT_DIFF_LINE_CHARACTERS = 5000 ; Max number of files shown in diff view -MAX_GIT_DIFF_FILES = 100 +MAX_GIT_DIFF_FILES = 100 ; Arguments for command 'git gc', e.g. "--aggressive --auto" ; see more on http://git-scm.com/docs/git-gc/ -GC_ARGS = +GC_ARGS = ; If use git wire protocol version 2 when git version >= 2.18, default is true, set to false when you always want git wire protocol version 1 -EnableAutoGitWireProtocol = true +EnableAutoGitWireProtocol = true ; Operation timeout in seconds [git.timeout] DEFAULT = 360 MIGRATE = 600 -MIRROR = 300 -CLONE = 300 -PULL = 300 -GC = 60 +MIRROR = 300 +CLONE = 300 +PULL = 300 +GC = 60 [mirror] ; Default interval as a duration between each check DEFAULT_INTERVAL = 8h ; Min interval as a duration must be > 1m -MIN_INTERVAL = 10m +MIN_INTERVAL = 10m [api] ; Enables Swagger. True or false; default is true. -ENABLE_SWAGGER = true +ENABLE_SWAGGER = true ; Max number of items in a page -MAX_RESPONSE_ITEMS = 50 +MAX_RESPONSE_ITEMS = 50 ; Default paging number of api -DEFAULT_PAGING_NUM = 30 +DEFAULT_PAGING_NUM = 30 ; Default and maximum number of items per page for git trees api DEFAULT_GIT_TREES_PER_PAGE = 1000 ; Default size of a blob returned by the blobs API (default is 10MiB) -DEFAULT_MAX_BLOB_SIZE = 10485760 +DEFAULT_MAX_BLOB_SIZE = 10485760 [oauth2] ; Enables OAuth2 provider -ENABLE = true +ENABLE = true ; Lifetime of an OAuth2 access token in seconds -ACCESS_TOKEN_EXPIRATION_TIME = 3600 +ACCESS_TOKEN_EXPIRATION_TIME = 3600 ; Lifetime of an OAuth2 access token in hours REFRESH_TOKEN_EXPIRATION_TIME = 730 ; Check if refresh token got already used -INVALIDATE_REFRESH_TOKENS = false +INVALIDATE_REFRESH_TOKENS = false ; OAuth2 authentication secret for access and refresh tokens, change this a unique string. -JWT_SECRET = {{ secrets.Foundation.jwt_secret }} +JWT_SECRET = {{ secrets.Foundation.jwt_secret }} [i18n] LANGS = en-US,zh-CN,zh-HK,zh-TW,de-DE,fr-FR,nl-NL,lv-LV,ru-RU,uk-UA,ja-JP,es-ES,pt-BR,pl-PL,bg-BG,it-IT,fi-FI,tr-TR,cs-CZ,sr-SP,sv-SE,ko-KR @@ -721,24 +717,23 @@ ko-KR = ko [highlight.mapping] [other] -SHOW_FOOTER_BRANDING = false +SHOW_FOOTER_BRANDING = false ; Show version information about Gitea and Go in the footer -SHOW_FOOTER_VERSION = false +SHOW_FOOTER_VERSION = false ; Show template execution time in the footer SHOW_FOOTER_TEMPLATE_LOAD_TIME = true [markup.asciidoc] -ENABLED = false +ENABLED = false ; List of file extensions that should be rendered by an external command FILE_EXTENSIONS = .adoc,.asciidoc ; External command to render all matching extensions -RENDER_COMMAND = asciidoc --out-file=- - +RENDER_COMMAND = asciidoc --out-file=- - ; Don't pass the file on STDIN, pass the filename as argument instead. -IS_INPUT_FILE = false +IS_INPUT_FILE = false [metrics] ; Enables metrics endpoint. True or false; default is false. ENABLED = false ; If you want to add authorization, specify a token here -TOKEN = - +TOKEN =