First round injecting news articles into homepages using serverside precompiled snippets
This commit is contained in:
parent
8886b572b0
commit
f5ef18851c
26
roles/Foundation/files/custom/public/assets/js/aninix.js
Normal file
26
roles/Foundation/files/custom/public/assets/js/aninix.js
Normal file
@ -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);
|
||||||
|
}
|
@ -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; }
|
|
File diff suppressed because one or more lines are too long
@ -1,271 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-US" class="theme-">
|
|
||||||
<head data-suburl="">
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
||||||
<title> AniNIX </title>
|
|
||||||
<link rel="manifest" href="/manifest.json" crossorigin="use-credentials">
|
|
||||||
<meta name="theme-color" content="#ff0000">
|
|
||||||
<meta name="author" content="AniNIX::Foundation" />
|
|
||||||
<meta name="description" content="AniNIX::Foundation \\ Code, documentation, and information sharing powered by Gitea (git with a cup of tea)" />
|
|
||||||
<meta name="keywords" content="go,git,self-hosted,gitea,aninix,aninix::foundation">
|
|
||||||
<meta name="referrer" content="no-referrer" />
|
|
||||||
<meta name="_csrf" content="iI1Kkrppem-yCnHGCll-UshSK6A6MTYwMDcwNjM3MTUxOTU5NzYxNg" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script>
|
|
||||||
/*
|
|
||||||
@licstart The following is the entire license notice for the
|
|
||||||
JavaScript code in this page.
|
|
||||||
|
|
||||||
Copyright (c) 2016 The Gitea Authors
|
|
||||||
Copyright (c) 2015 The Gogs Authors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
---
|
|
||||||
Licensing information for additional javascript libraries can be found at:
|
|
||||||
{{StaticUrlPrefix}}/vendor/librejs.html
|
|
||||||
|
|
||||||
@licend The above is the entire license notice
|
|
||||||
for the JavaScript code in this page.
|
|
||||||
*/
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
window.config = {
|
|
||||||
AppVer: '1.12.4',
|
|
||||||
AppSubUrl: '',
|
|
||||||
StaticUrlPrefix: '',
|
|
||||||
UseServiceWorker: true ,
|
|
||||||
csrf: 'iI1Kkrppem-yCnHGCll-UshSK6A6MTYwMDcwNjM3MTUxOTU5NzYxNg',
|
|
||||||
HighlightJS: false,
|
|
||||||
Minicolors: false,
|
|
||||||
SimpleMDE: false,
|
|
||||||
Tribute: false,
|
|
||||||
U2F: false,
|
|
||||||
Heatmap: false,
|
|
||||||
heatmapUser: null,
|
|
||||||
NotificationSettings: {
|
|
||||||
MinTimeout: 10000 ,
|
|
||||||
TimeoutStep: 10000 ,
|
|
||||||
MaxTimeout: 60000 ,
|
|
||||||
EventSourceUpdateTime: 10000 ,
|
|
||||||
},
|
|
||||||
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.png">
|
|
||||||
<link rel="mask-icon" href="/img/gitea-safari.svg" color="#609926">
|
|
||||||
<link rel="fluid-icon" href="/img/gitea-lg.png" title="AniNIX">
|
|
||||||
<link rel="stylesheet" href="/vendor/assets/font-awesome/css/font-awesome.min.css">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/fomantic/semantic.min.css?v=d8d448774563cec3783c3b65d4e914b6">
|
|
||||||
<link rel="stylesheet" href="/css/index.css?v=d8d448774563cec3783c3b65d4e914b6">
|
|
||||||
<noscript>
|
|
||||||
<style>
|
|
||||||
.dropdown:hover > .menu { display: block; }
|
|
||||||
.ui.secondary.menu .dropdown.item > .menu { margin-top: 0; }
|
|
||||||
</style>
|
|
||||||
</noscript>
|
|
||||||
|
|
||||||
<style class="list-search-style"></style>
|
|
||||||
|
|
||||||
<meta property="og:title" content="AniNIX">
|
|
||||||
<meta property="og:type" content="website" />
|
|
||||||
<meta property="og:image" content="/img/gitea-lg.png" />
|
|
||||||
<meta property="og:url" content="https://foundation.aninix.net/" />
|
|
||||||
<meta property="og:description" content="AniNIX::Foundation \\ Code, documentation, and information sharing powered by Gitea (git with a cup of tea)">
|
|
||||||
|
|
||||||
<meta property="og:site_name" content="AniNIX" />
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="/css/theme-aninix.css?v=d8d448774563cec3783c3b65d4e914b6">
|
|
||||||
|
|
||||||
<link rel="icon" type="image/png" href="/img/AniNIX.png" />
|
|
||||||
<link rel="alternate" type="application/rss+xml" title="AniNIX::RSS" href="/aninix.xml" />
|
|
||||||
<link rel='apple-touch-icon' sizes='180x180' href='/img/AniNIX.png' />
|
|
||||||
<meta name='apple-mobile-web-app-capable' content='yes' />
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="full height">
|
|
||||||
<noscript>This website works better with JavaScript.</noscript>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="ui top secondary stackable main menu following bar light">
|
|
||||||
<div class="ui container" id="navbar">
|
|
||||||
<div class="item brand" style="justify-content: space-between;">
|
|
||||||
<a href="/">
|
|
||||||
<img class="ui mini image" src="/img/gitea-sm.png">
|
|
||||||
</a>
|
|
||||||
<div class="ui basic icon button mobile-only" id="navbar-expand-toggle">
|
|
||||||
<i class="sidebar icon"></i>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<a class="item active" href="/">Home</a>
|
|
||||||
<a class="item " href="/explore/repos">Explore</a>
|
|
||||||
|
|
||||||
|
|
||||||
<a class="item" target="_blank" id="chat" href="https://irc.aninix.net/">Chat</a>
|
|
||||||
<a class="item" target="_blank" id="pwdchange" href="https://password.aninix.net/">Change Password</a>
|
|
||||||
<a class="item" id="martialarts" href="/martialarts/">Martial Arts</a>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a class="item" target="_blank" rel="noopener noreferrer" href="https://docs.gitea.io">Help</a>
|
|
||||||
<div class="right stackable menu">
|
|
||||||
|
|
||||||
<a class="item" href="/user/sign_up">
|
|
||||||
<svg class="svg octicon-person" width="16" height="16" aria-hidden="true"><use xlink:href="#octicon-person" /></svg> Register
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a class="item" rel="nofollow" href="/user/login?redirect_to=">
|
|
||||||
<svg class="svg octicon-sign-in" width="16" height="16" aria-hidden="true"><use xlink:href="#octicon-sign-in" /></svg> Sign In
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div class="home">
|
|
||||||
<h2>Thank you for your purchase!</h2>
|
|
||||||
<footer>
|
|
||||||
<div class="ui container">
|
|
||||||
<div class="ui left">
|
|
||||||
Powered by Gitea Page: <strong>0ms</strong> Template: <strong>0ms</strong>
|
|
||||||
</div>
|
|
||||||
<div class="ui right links">
|
|
||||||
|
|
||||||
<div class="ui language bottom floating slide up dropdown link item">
|
|
||||||
<i class="world icon"></i>
|
|
||||||
<div class="text">English</div>
|
|
||||||
<div class="menu">
|
|
||||||
|
|
||||||
<a lang="en-US" class="item active selected" href="#">English</a>
|
|
||||||
|
|
||||||
<a lang="zh-CN" class="item " href="?lang=zh-CN">简体中文</a>
|
|
||||||
|
|
||||||
<a lang="zh-HK" class="item " href="?lang=zh-HK">繁體中文(香港)</a>
|
|
||||||
|
|
||||||
<a lang="zh-TW" class="item " href="?lang=zh-TW">繁體中文(台灣)</a>
|
|
||||||
|
|
||||||
<a lang="de-DE" class="item " href="?lang=de-DE">Deutsch</a>
|
|
||||||
|
|
||||||
<a lang="fr-FR" class="item " href="?lang=fr-FR">français</a>
|
|
||||||
|
|
||||||
<a lang="nl-NL" class="item " href="?lang=nl-NL">Nederlands</a>
|
|
||||||
|
|
||||||
<a lang="lv-LV" class="item " href="?lang=lv-LV">latviešu</a>
|
|
||||||
|
|
||||||
<a lang="ru-RU" class="item " href="?lang=ru-RU">русский</a>
|
|
||||||
|
|
||||||
<a lang="uk-UA" class="item " href="?lang=uk-UA">Українська</a>
|
|
||||||
|
|
||||||
<a lang="ja-JP" class="item " href="?lang=ja-JP">日本語</a>
|
|
||||||
|
|
||||||
<a lang="es-ES" class="item " href="?lang=es-ES">español</a>
|
|
||||||
|
|
||||||
<a lang="pt-BR" class="item " href="?lang=pt-BR">português do Brasil</a>
|
|
||||||
|
|
||||||
<a lang="pl-PL" class="item " href="?lang=pl-PL">polski</a>
|
|
||||||
|
|
||||||
<a lang="bg-BG" class="item " href="?lang=bg-BG">български</a>
|
|
||||||
|
|
||||||
<a lang="it-IT" class="item " href="?lang=it-IT">italiano</a>
|
|
||||||
|
|
||||||
<a lang="fi-FI" class="item " href="?lang=fi-FI">suomi</a>
|
|
||||||
|
|
||||||
<a lang="tr-TR" class="item " href="?lang=tr-TR">Türkçe</a>
|
|
||||||
|
|
||||||
<a lang="cs-CZ" class="item " href="?lang=cs-CZ">čeština</a>
|
|
||||||
|
|
||||||
<a lang="sr-SP" class="item " href="?lang=sr-SP">српски</a>
|
|
||||||
|
|
||||||
<a lang="sv-SE" class="item " href="?lang=sv-SE">svenska</a>
|
|
||||||
|
|
||||||
<a lang="ko-KR" class="item " href="?lang=ko-KR">한국어</a>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<a href="/vendor/librejs.html" data-jslicense="1">JavaScript licenses</a>
|
|
||||||
<a href="/api/swagger">API</a>
|
|
||||||
<a target="_blank" rel="noopener noreferrer" href="https://gitea.io">Website</a>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/js/jquery.js?v=d8d448774563cec3783c3b65d4e914b6"></script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src="/fomantic/semantic.min.js?v=d8d448774563cec3783c3b65d4e914b6"></script>
|
|
||||||
<script src="/js/index.js?v=d8d448774563cec3783c3b65d4e914b6"></script>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
var _gaq = _gaq || [];
|
|
||||||
_gaq.push(['_setAccount', 'UA-18148792-3']);
|
|
||||||
_gaq.push(['_trackPageview']);
|
|
||||||
|
|
||||||
(function() {
|
|
||||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
||||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
||||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
||||||
})();
|
|
||||||
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script src="https://redalert.battleforthenet.com/widget.js" async></script>
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
document.getElementsByClassName('brand')[0].children[0].children[0].src="/img/AniNIX.png";
|
|
||||||
$('meta[property=og\\:image]').attr('content', '/img/AniNIX.png');
|
|
||||||
$('link[rel="mask-icon"]').attr('href', '/img/AniNIX.png');
|
|
||||||
$('link[rel="mask-icon"]').attr('color', '#000000');
|
|
||||||
document.getElementsById("pwdchange").setAttribute("target","_blank");
|
|
||||||
document.getElementsById("chat").setAttribute("target","_blank");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
|
@ -2,3 +2,4 @@
|
|||||||
<link rel="alternate" type="application/rss+xml" title="AniNIX/RSS" href="/aninix.xml" />
|
<link rel="alternate" type="application/rss+xml" title="AniNIX/RSS" href="/aninix.xml" />
|
||||||
<link rel='apple-touch-icon' sizes='180x180' href='/assets/img/AniNIX.png' />
|
<link rel='apple-touch-icon' sizes='180x180' href='/assets/img/AniNIX.png' />
|
||||||
<meta name='apple-mobile-web-app-capable' content='yes' />
|
<meta name='apple-mobile-web-app-capable' content='yes' />
|
||||||
|
<script src="/assets/js/aninix.js"></script>
|
||||||
|
@ -49,7 +49,7 @@
|
|||||||
<a href="https://maat.aninix.net/">Downloads</a>
|
<a href="https://maat.aninix.net/">Downloads</a>
|
||||||
</h1>
|
</h1>
|
||||||
<p class="large">
|
<p class="large">
|
||||||
We offer downloads from our AniNIX::Maat continuous-deployment system, including static files and packages for <a href="https://archlinux.org/">ArchLinux-style distributions.</a>
|
We offer downloads from our AniNIX/Maat continuous-deployment system, including static files and packages for <a href="https://archlinux.org/">ArchLinux-style distributions.</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -67,6 +67,12 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr style="margin-top: 50px;" />
|
<hr style="margin-top: 50px;" />
|
||||||
|
<div class="sixteen wide center aligned centered column">
|
||||||
|
<div class="hero" id="latest-news"></div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
insertNewsSnippet("https://aninix.net/assets/rss-snippets/aninix","latest-news");
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
<div class="sixteen wide center aligned centered column">
|
<div class="sixteen wide center aligned centered column">
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
<h2>Follow us on social media</h2>
|
<h2>Follow us on social media</h2>
|
||||||
|
@ -62,6 +62,10 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<hr style="margin-top: 50px;" />
|
<hr style="margin-top: 50px;" />
|
||||||
|
<div class="ui stackable middle very relaxed page grid" id="latest-news"></div>
|
||||||
|
<script type="text/javascript">
|
||||||
|
insertNewsSnippet("https://aninix.net/assets/rss-snippets/maqotw","latest-news");
|
||||||
|
</script>
|
||||||
<div class="ui stackable middle very relaxed page grid" id="social">
|
<div class="ui stackable middle very relaxed page grid" id="social">
|
||||||
<div class="sixteen wide center aligned centered column">
|
<div class="sixteen wide center aligned centered column">
|
||||||
<div class="hero">
|
<div class="hero">
|
||||||
|
@ -1,82 +0,0 @@
|
|||||||
<div class="ui stackable middle very relaxed page grid">
|
|
||||||
<div class="sixteen wide center aligned centered column">
|
|
||||||
<!--<div class="ui negative message"><p>We are open despite COVID-19 -- those attending in person will need to sign a waiver of health and follow all state requirements, including wearing a mask.</p></div>-->
|
|
||||||
<div>
|
|
||||||
<img class="logo" src="/assets/img/icons/MartialArtsIcon.png" />
|
|
||||||
</div>
|
|
||||||
<div class="hero">
|
|
||||||
<h1 class="ui icon header title">
|
|
||||||
AniNIX Martial Arts
|
|
||||||
</h1>
|
|
||||||
<h2>Open-source, research-driven self-defense and personal health</h2>
|
|
||||||
<p>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.</p><p>Drop-ins are welcome, and registration is cheap. We hope you'll give us a chance to show you what we can do.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="ui stackable middle very relaxed page grid">
|
|
||||||
<div class="eight wide center column">
|
|
||||||
<h1 class="hero ui icon header">
|
|
||||||
<img width=20px height=20px src='/assets/img/icons/FoundationIcon.png'/>
|
|
||||||
<a href="/mawiki">Open-source</a>
|
|
||||||
</h1>
|
|
||||||
<p class="large">
|
|
||||||
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.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div class="eight wide center column">
|
|
||||||
<h1 class="hero ui icon header">
|
|
||||||
<img width=20px height=20px src='/assets/img/ushf.jpg'/>
|
|
||||||
<a href='https://ushapkidofederation.wordpress.com/'>Research-driven</a>
|
|
||||||
</h1>
|
|
||||||
<p class="large">
|
|
||||||
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.
|
|
||||||
</p> </div>
|
|
||||||
</div>
|
|
||||||
<div class="ui stackable middle very relaxed page grid">
|
|
||||||
<div class="eight wide center column">
|
|
||||||
<h1 class="hero ui icon header">
|
|
||||||
<img width=20px height=20px src="/assets/img/icons/MartialArtsIcon.png"/>
|
|
||||||
<a href="/martialarts/index.html#storefront">Low-cost</a>
|
|
||||||
</h1>
|
|
||||||
<p class="large">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.</p>
|
|
||||||
<p class="large">
|
|
||||||
<ul style="text-align: left;">
|
|
||||||
<li><b>Cost:</b> $10 per month in-person; $5 per month livestream -- pay below.</li>
|
|
||||||
<li><b>Lessons:</b>Tuesdays 7-8:30 p.m.</li>
|
|
||||||
<li><b>Sparring:</b>Tuesdays 6-7 p.m.</li>
|
|
||||||
<li><b>Shaolin Workouts:</b> Saturday mornings at 8 a.m. </li>
|
|
||||||
<li><b>Location:</b> <a href="https://g.page/aninix-martial-arts?share">225 Blaser Drive, Belleville, WI</a></li>
|
|
||||||
<li><b>What to bring:</b> Exercise clothes and water</li>
|
|
||||||
</ul></p>
|
|
||||||
</div>
|
|
||||||
<div class="eight wide center column">
|
|
||||||
<h1 class="hero ui icon header">
|
|
||||||
<img width=20px height=20x src="/assets/img/icons/IRCIcon.png"/>
|
|
||||||
<a href="/martialarts/index.html#social">Real-life First</a>
|
|
||||||
</h1>
|
|
||||||
<p class="large">
|
|
||||||
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.</p>
|
|
||||||
<p class="large">
|
|
||||||
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.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<hr style="margin-top: 50px;" />
|
|
||||||
<div class="ui stackable middle very relaxed page grid" id="social">
|
|
||||||
<div class="sixteen wide center aligned centered column">
|
|
||||||
<div class="hero">
|
|
||||||
<h2 id=social>Follow us on social media</h2>
|
|
||||||
<p class=large>We want to stay in touch with you, so we are present on the social media platforms we find applicable.<br/> Have one you want us on? Contact us and let us know!</p>
|
|
||||||
</div>
|
|
||||||
<div class="ui stackable middle very relaxed page grid" id="social">
|
|
||||||
<div class="two wide center column"><p> </p></div>
|
|
||||||
<div class="two wide center column"><a title=RSS href="/martialarts/maqotw.xml"><img style="width: 50px; height:auto; margin: 0; padding: 0 auto;" alt=RSS src="/assets/img/social/rss.png" /></a></div>
|
|
||||||
<div class="two wide center column"><a title=Discord href="https://discord.gg/2bmggfR"><img alt=Discord style="width: 50px; height:auto; margin: 0; padding: 0 auto;" src="/assets/img/social/discord.ico" /></a></div>
|
|
||||||
<div class="two wide center column"><a title=NextDoor href="https://nextdoor.com/news_feed/?post=112835813"><img alt=NextDoor src="/assets/img/social/nextdoor.png" style="width: 50px; height:auto; margin: 0; padding: 0 auto;" /></a></div>
|
|
||||||
<div class="two wide center column"><a title=YouTube href="https://www.youtube.com/channel/UCVAkee-WaInnZbPn16bqzrw/about?view_as=subscriber"><img src="/assets/img/social/youtube.png" style="width: 50px; height:auto; margin: 0; padding: 0 auto;" /></a></div>
|
|
||||||
<div class="two wide center column"><a title=Strava href="https://www.strava.com/clubs/aninixmartialarts"><img style="width: 50px; height:auto; margin: 0; padding: 0 auto;" src="/assets/img/social/strava.png" /></a></div>
|
|
||||||
<div class="two wide center column"><a title=Facebook href="https://www.facebook.com/groups/aninixmartialarts/"><img style="width: 50px; height:auto; margin: 0; padding: 0 auto;" src="/assets/img/social/facebook.png" /></a></div>
|
|
||||||
<div class="two wide center column"><p> </p></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
@ -59,20 +59,6 @@
|
|||||||
owner: gitea
|
owner: gitea
|
||||||
group: 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
|
- name: Generate pages
|
||||||
become: yes
|
become: yes
|
||||||
register: custompages
|
register: custompages
|
||||||
|
@ -8,35 +8,36 @@ APP_NAME = AniNIX
|
|||||||
RUN_USER = gitea
|
RUN_USER = gitea
|
||||||
; Either "dev", "prod" or "test", default is "dev"
|
; Either "dev", "prod" or "test", default is "dev"
|
||||||
RUN_MODE = prod
|
RUN_MODE = prod
|
||||||
|
WORK_PATH = /var/lib/gitea
|
||||||
|
|
||||||
[repository]
|
[repository]
|
||||||
ROOT = repos
|
ROOT = repos
|
||||||
SCRIPT_TYPE = bash
|
SCRIPT_TYPE = bash
|
||||||
; Default ANSI charset
|
; Default ANSI charset
|
||||||
ANSI_CHARSET =
|
ANSI_CHARSET =
|
||||||
; Force every new repository to be private
|
; 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 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
|
; 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
|
; Preferred Licenses to place at the top of the List
|
||||||
; The name here must match the filename in conf/license or custom/conf/license
|
; 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 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
|
; 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.
|
; 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
|
; 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
|
; Close issues as long as a commit on any branch marks it as fixed
|
||||||
DEFAULT_CLOSE_ISSUES_VIA_COMMITS_IN_ANY_BRANCH = false
|
DEFAULT_CLOSE_ISSUES_VIA_COMMITS_IN_ANY_BRANCH = false
|
||||||
|
|
||||||
[repository.editor]
|
[repository.editor]
|
||||||
; List of file extensions for which lines should be wrapped in the CodeMirror 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
|
; 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
|
; 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
|
; 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
|
PREVIEWABLE_FILE_MODES = markdown
|
||||||
@ -49,15 +50,15 @@ LOCAL_WIKI_PATH = tmp/local-wiki
|
|||||||
|
|
||||||
[repository.upload]
|
[repository.upload]
|
||||||
; Whether repository file uploads are enabled. Defaults to `true`
|
; 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)
|
; 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
|
; One or more allowed types, e.g. image/jpeg|image/png. Nothing means any file type
|
||||||
ALLOWED_TYPES =
|
ALLOWED_TYPES =
|
||||||
; Max size of each file in megabytes. Defaults to 3MB
|
; Max size of each file in megabytes. Defaults to 3MB
|
||||||
FILE_MAX_SIZE = 3
|
FILE_MAX_SIZE = 3
|
||||||
; Max number of files per upload. Defaults to 5
|
; Max number of files per upload. Defaults to 5
|
||||||
MAX_FILES = 5
|
MAX_FILES = 5
|
||||||
|
|
||||||
[repository.pull-request]
|
[repository.pull-request]
|
||||||
; List of prefixes used in Pull Request title to mark them as Work In Progress
|
; 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]
|
[cors]
|
||||||
; More information about CORS can be found here: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS#The_HTTP_response_headers
|
; 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)
|
; enable cors headers (disabled by default)
|
||||||
ENABLED = false
|
ENABLED = false
|
||||||
; scheme of allowed requests
|
; scheme of allowed requests
|
||||||
SCHEME = http
|
SCHEME = http
|
||||||
; list of requesting domains that are allowed
|
; list of requesting domains that are allowed
|
||||||
ALLOW_DOMAIN = *
|
ALLOW_DOMAIN = *
|
||||||
; allow subdomains of headers listed above to request
|
; allow subdomains of headers listed above to request
|
||||||
ALLOW_SUBDOMAIN = false
|
ALLOW_SUBDOMAIN = false
|
||||||
; list of methods allowed to request
|
; 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 time to cache response
|
||||||
MAX_AGE = 10m
|
MAX_AGE = 10m
|
||||||
; allow request with credentials
|
; allow request with credentials
|
||||||
ALLOW_CREDENTIALS = false
|
ALLOW_CREDENTIALS = false
|
||||||
|
|
||||||
[ui]
|
[ui]
|
||||||
; Number of repositories that are displayed on one explore page
|
; 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
|
; 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
|
; 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.
|
; 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
|
; 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
|
; Value of `theme-color` meta tag, used by Android >= 5.0
|
||||||
; An invalid color like "none" or "disable" will have the default style
|
; 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
|
; 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 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
|
; 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
|
; 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`.
|
; 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.
|
; 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
|
DEFAULT_SHOW_FULL_NAME = false
|
||||||
|
|
||||||
[ui.admin]
|
[ui.admin]
|
||||||
; Number of users that are displayed on one page
|
; 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
|
; 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
|
; Number of notices that are displayed on one page
|
||||||
NOTICE_PAGING_NUM = 25
|
NOTICE_PAGING_NUM = 25
|
||||||
; Number of organizations that are displayed on one page
|
; Number of organizations that are displayed on one page
|
||||||
ORG_PAGING_NUM = 50
|
ORG_PAGING_NUM = 50
|
||||||
|
|
||||||
[ui.user]
|
[ui.user]
|
||||||
; Number of repos that are displayed on one page
|
; Number of repos that are displayed on one page
|
||||||
REPO_PAGING_NUM = 15
|
REPO_PAGING_NUM = 15
|
||||||
|
|
||||||
[ui.meta]
|
[ui.meta]
|
||||||
AUTHOR = AniNIX::Foundation
|
AUTHOR = AniNIX/Foundation
|
||||||
DESCRIPTION = AniNIX::Foundation \\ Code, documentation, and information sharing powered by Gitea (git with a cup of tea)
|
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
|
KEYWORDS = go,git,self-hosted,gitea,aninix,aninix::foundation
|
||||||
|
|
||||||
[markdown]
|
[markdown]
|
||||||
; Enable hard line break extension
|
; Enable hard line break extension
|
||||||
ENABLE_HARD_LINE_BREAK = false
|
ENABLE_HARD_LINE_BREAK = false
|
||||||
; List of custom URL-Schemes that are allowed as links when rendering Markdown
|
; List of custom URL-Schemes that are allowed as links when rendering Markdown
|
||||||
; for example git,magnet
|
; for example git,magnet
|
||||||
CUSTOM_URL_SCHEMES =
|
CUSTOM_URL_SCHEMES =
|
||||||
; List of file extensions that should be rendered/edited as Markdown
|
; 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
|
; 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]
|
[server]
|
||||||
; The protocol the server listens on. One of 'http', 'https', 'unix' or 'fcgi'.
|
; The protocol the server listens on. One of 'http', 'https', 'unix' or 'fcgi'.
|
||||||
PROTOCOL = http
|
PROTOCOL = http
|
||||||
DOMAIN = {{ external_domain }}
|
DOMAIN = {{ external_domain }}
|
||||||
ROOT_URL = https://{{ external_domain }}/
|
ROOT_URL = https://{{ external_domain }}/
|
||||||
; The address to listen on. Either a IPv4/IPv6 address or the path to a unix socket.
|
; The address to listen on. Either a IPv4/IPv6 address or the path to a unix socket.
|
||||||
HTTP_ADDR = 0.0.0.0
|
HTTP_ADDR = 0.0.0.0
|
||||||
HTTP_PORT = 3000
|
HTTP_PORT = 3000
|
||||||
; If REDIRECT_OTHER_PORT is true, and PROTOCOL is set to https an http server
|
; 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
|
; 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
|
; ROOT_URL. Defaults are false for REDIRECT_OTHER_PORT and 80 for
|
||||||
; PORT_TO_REDIRECT.
|
; PORT_TO_REDIRECT.
|
||||||
REDIRECT_OTHER_PORT = false
|
REDIRECT_OTHER_PORT = false
|
||||||
PORT_TO_REDIRECT = 3000
|
PORT_TO_REDIRECT = 3000
|
||||||
; Permission for unix socket
|
; 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.
|
; 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.
|
; 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.
|
; 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'.
|
; 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 feature when not available
|
||||||
DISABLE_SSH = false
|
DISABLE_SSH = false
|
||||||
; Whether to use the builtin SSH server or not.
|
; 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.
|
; 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
|
; 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
|
; The network interface the builtin SSH server should listen on
|
||||||
SSH_LISTEN_HOST =
|
SSH_LISTEN_HOST =
|
||||||
; Port number to be exposed in clone URL
|
; Port number to be exposed in clone URL
|
||||||
SSH_PORT = 22
|
SSH_PORT = 22
|
||||||
; The port number the builtin SSH server should listen on
|
; 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'.
|
; 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
|
; 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.
|
; If you intend to use the AuthorizedKeysCommand functionality then you should turn this off.
|
||||||
SSH_CREATE_AUTHORIZED_KEYS_FILE = true
|
SSH_CREATE_AUTHORIZED_KEYS_FILE = true
|
||||||
; For the built-in SSH server, choose the ciphers to support for SSH connections,
|
; For the built-in SSH server, choose the ciphers to support for SSH connections,
|
||||||
; for system SSH this setting has no effect
|
; 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 the built-in SSH server, choose the key exchange algorithms to support for SSH connections,
|
||||||
; for system SSH this setting has no effect
|
; 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 the built-in SSH server, choose the MACs to support for SSH connections,
|
||||||
; for system SSH this setting has no effect
|
; 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,
|
; Directory to create temporary files in when testing public keys using ssh-keygen,
|
||||||
; default is the system temporary directory.
|
; 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.
|
; 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
|
; 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
|
; 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
|
; 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
|
; Disable CDN even in "prod" mode
|
||||||
OFFLINE_MODE = true
|
OFFLINE_MODE = true
|
||||||
DISABLE_ROUTER_LOG = false
|
DISABLE_ROUTER_LOG = false
|
||||||
; Generate steps:
|
; Generate steps:
|
||||||
; $ ./gitea cert -ca=true -duration=8760h0m0s -host=myhost.example.com
|
; $ ./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):
|
; not forget to export the private key):
|
||||||
; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
|
; $ openssl pkcs12 -in cert.pfx -out cert.pem -nokeys
|
||||||
; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
|
; $ openssl pkcs12 -in cert.pfx -out key.pem -nocerts -nodes
|
||||||
CERT_FILE = custom/https/cert.pem
|
CERT_FILE = custom/https/cert.pem
|
||||||
KEY_FILE = custom/https/key.pem
|
KEY_FILE = custom/https/key.pem
|
||||||
; Root directory containing templates and static files.
|
; Root directory containing templates and static files.
|
||||||
; default is the path where Gitea is executed
|
; 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
|
; Default path for App data
|
||||||
APP_DATA_PATH = data
|
APP_DATA_PATH = data
|
||||||
; Application level GZIP support
|
; Application level GZIP support
|
||||||
ENABLE_GZIP = false
|
ENABLE_GZIP = false
|
||||||
; Application profiling (memory and cpu)
|
; Application profiling (memory and cpu)
|
||||||
; For "web" command it listens on localhost:6060
|
; For "web" command it listens on localhost:6060
|
||||||
; For "serve" command it dumps to disk at PPROF_DATA_PATH as (cpuprofile|memprofile)_<username>_<temporary id>
|
; For "serve" command it dumps to disk at PPROF_DATA_PATH as (cpuprofile|memprofile)_<username>_<temporary id>
|
||||||
ENABLE_PPROF = false
|
ENABLE_PPROF = false
|
||||||
; PPROF_DATA_PATH, use an absolute path when you start gitea as service
|
; 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, can be "home", "explore", or "organizations"
|
||||||
LANDING_PAGE = home
|
LANDING_PAGE = home
|
||||||
; Enables git-lfs support. true or false, default is false.
|
; 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.
|
; Where your lfs files reside, default is data/lfs.
|
||||||
; LFS authentication secret, change this yourself
|
; 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 authentication validity period (in time.Duration), pushes taking longer than this may fail.
|
||||||
LFS_HTTP_AUTH_EXPIRY = 20m
|
LFS_HTTP_AUTH_EXPIRY = 20m
|
||||||
|
|
||||||
[lfs]
|
[lfs]
|
||||||
PATH = data/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)
|
; Define allowed algorithms and their minimum key length (use -1 to disable a type)
|
||||||
[ssh.minimum_key_sizes]
|
[ssh.minimum_key_sizes]
|
||||||
ED25519 = 256
|
ED25519 = 256
|
||||||
ECDSA = 256
|
ECDSA = 256
|
||||||
RSA = 2048
|
RSA = 2048
|
||||||
DSA = 1024
|
DSA = 1024
|
||||||
|
|
||||||
[database]
|
[database]
|
||||||
; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
|
; Either "mysql", "postgres", "mssql" or "sqlite3", it's your choice
|
||||||
DB_TYPE = postgres
|
DB_TYPE = postgres
|
||||||
HOST = 127.0.0.1:5432
|
HOST = 127.0.0.1:5432
|
||||||
NAME = gitea
|
NAME = gitea
|
||||||
USER = gitea
|
USER = gitea
|
||||||
; Use PASSWD = `your password` for quoting if you use special characters in the password.
|
; 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 Postgres, either "disable" (default), "require", or "verify-full"
|
||||||
; For MySQL, either "false" (default), "true", or "skip-verify"
|
; 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".
|
; 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.
|
; 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
|
; 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
|
; For "sqlite3" only. Query timeout
|
||||||
SQLITE_TIMEOUT = 500
|
SQLITE_TIMEOUT = 500
|
||||||
; For iterate buffer, default is 50
|
; For iterate buffer, default is 50
|
||||||
ITERATE_BUFFER_SIZE = 50
|
ITERATE_BUFFER_SIZE = 50
|
||||||
; Show the database generated SQL
|
; Show the database generated SQL
|
||||||
LOG_SQL = false
|
LOG_SQL = false
|
||||||
; Maximum number of DB Connect retries
|
; Maximum number of DB Connect retries
|
||||||
DB_RETRIES = 10
|
DB_RETRIES = 10
|
||||||
; Backoff time per DB retry (time.Duration)
|
; Backoff time per DB retry (time.Duration)
|
||||||
DB_RETRY_BACKOFF = 3s
|
DB_RETRY_BACKOFF = 3s
|
||||||
|
|
||||||
[indexer]
|
[indexer]
|
||||||
; Issue indexer type, currently support: bleve or db, default is bleve
|
; 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 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.
|
; 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 by default disabled, since it uses a lot of disk space
|
||||||
REPO_INDEXER_ENABLED = false
|
REPO_INDEXER_ENABLED = false
|
||||||
REPO_INDEXER_PATH = indexers/repos.bleve
|
REPO_INDEXER_PATH = indexers/repos.bleve
|
||||||
MAX_FILE_SIZE = 1048576
|
MAX_FILE_SIZE = 1048576
|
||||||
|
|
||||||
[admin]
|
[admin]
|
||||||
; Disallow regular (non-admin) users from creating organizations.
|
; Disallow regular (non-admin) users from creating organizations.
|
||||||
@ -288,23 +289,23 @@ DISABLE_REGULAR_ORG_CREATION = true
|
|||||||
|
|
||||||
[security]
|
[security]
|
||||||
; Whether the installer is disabled
|
; Whether the installer is disabled
|
||||||
INSTALL_LOCK = true
|
INSTALL_LOCK = true
|
||||||
; !!CHANGE THIS TO KEEP YOUR USER DATA SAFE!!
|
; !!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)
|
; How long to remember that an user is logged in before requiring relogin (in days)
|
||||||
LOGIN_REMEMBER_DAYS = 7
|
LOGIN_REMEMBER_DAYS = 7
|
||||||
COOKIE_USERNAME = gitea_awesome
|
COOKIE_USERNAME = gitea_awesome
|
||||||
COOKIE_REMEMBER_NAME = gitea_incredible
|
COOKIE_REMEMBER_NAME = gitea_incredible
|
||||||
; Reverse proxy authentication header name of user name
|
; 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
|
REVERSE_PROXY_AUTHENTICATION_EMAIL = X-WEBAUTH-EMAIL
|
||||||
; The minimum password length for new Users
|
; 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
|
; 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
|
; Set to true to prevent all users (including admin) from creating custom git hooks
|
||||||
DISABLE_GIT_HOOKS = false
|
DISABLE_GIT_HOOKS = false
|
||||||
INTERNAL_TOKEN = {{ secrets.Foundation.internal_token }}
|
INTERNAL_TOKEN = {{ secrets.Foundation.internal_token }}
|
||||||
|
|
||||||
[openid]
|
[openid]
|
||||||
;
|
;
|
||||||
@ -333,164 +334,164 @@ ENABLE_OPENID_SIGNIN = FALSE
|
|||||||
; Space separated.
|
; Space separated.
|
||||||
; Only these would be allowed if non-blank.
|
; Only these would be allowed if non-blank.
|
||||||
; Example value: trusted.domain.org trusted.domain.net
|
; Example value: trusted.domain.org trusted.domain.net
|
||||||
WHITELISTED_URIS =
|
WHITELISTED_URIS =
|
||||||
; Forbidden URI patterns (POSIX regexp).
|
; Forbidden URI patterns (POSIX regexp).
|
||||||
; Space separated.
|
; Space separated.
|
||||||
; Only used if WHITELISTED_URIS is blank.
|
; Only used if WHITELISTED_URIS is blank.
|
||||||
; Example value: loadaverage.org/badguy stackexchange.com/.*spammer
|
; Example value: loadaverage.org/badguy stackexchange.com/.*spammer
|
||||||
BLACKLISTED_URIS =
|
BLACKLISTED_URIS =
|
||||||
ENABLE_OPENID_SIGNUP = false
|
ENABLE_OPENID_SIGNUP = false
|
||||||
|
|
||||||
[service]
|
[service]
|
||||||
; Time limit to confirm account/email registration
|
; 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
|
; 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.
|
; 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
|
; List of domain names that are allowed to be used to register on a Gitea instance
|
||||||
; gitea.io,example.com
|
; gitea.io,example.com
|
||||||
EMAIL_DOMAIN_ALLOWLIST =
|
EMAIL_DOMAIN_ALLOWLIST =
|
||||||
; Disallow registration, only allow admins to create accounts.
|
; 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 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.
|
; User must sign in to view anything.
|
||||||
REQUIRE_SIGNIN_VIEW = false
|
REQUIRE_SIGNIN_VIEW = false
|
||||||
; Mail notification
|
; Mail notification
|
||||||
ENABLE_NOTIFY_MAIL = false
|
ENABLE_NOTIFY_MAIL = false
|
||||||
; More detail: https://github.com/gogits/gogs/issues/165
|
; More detail: https://github.com/gogits/gogs/issues/165
|
||||||
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
|
ENABLE_REVERSE_PROXY_AUTHENTICATION = false
|
||||||
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
|
ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
|
||||||
ENABLE_REVERSE_PROXY_EMAIL = false
|
ENABLE_REVERSE_PROXY_EMAIL = false
|
||||||
; Enable captcha validation for registration
|
; Enable captcha validation for registration
|
||||||
ENABLE_CAPTCHA = false
|
ENABLE_CAPTCHA = false
|
||||||
; Type of captcha you want to use. Options: image, recaptcha
|
; Type of captcha you want to use. Options: image, recaptcha
|
||||||
CAPTCHA_TYPE = image
|
CAPTCHA_TYPE = image
|
||||||
; Enable recaptcha to use Google's recaptcha service
|
; Enable recaptcha to use Google's recaptcha service
|
||||||
; Go to https://www.google.com/recaptcha/admin to sign up for a key
|
; Go to https://www.google.com/recaptcha/admin to sign up for a key
|
||||||
RECAPTCHA_SECRET =
|
RECAPTCHA_SECRET =
|
||||||
RECAPTCHA_SITEKEY =
|
RECAPTCHA_SITEKEY =
|
||||||
; Change this to use recaptcha.net or other recaptcha service
|
; 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
|
; Default value for KeepEmailPrivate
|
||||||
; Each new user will get the value of this setting copied into their profile
|
; 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
|
; Default value for AllowCreateOrganization
|
||||||
; Every new user will have rights set to create organizations depending on this setting
|
; 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"
|
; Either "public", "limited" or "private", default is "public"
|
||||||
; Limited is for signed user only
|
; Limited is for signed user only
|
||||||
; Private is only for member of the organization
|
; Private is only for member of the organization
|
||||||
; Public is for everyone
|
; Public is for everyone
|
||||||
DEFAULT_ORG_VISIBILITY = public
|
DEFAULT_ORG_VISIBILITY = public
|
||||||
; Default value for EnableDependencies
|
; Default value for EnableDependencies
|
||||||
; Repositories will use dependencies by default depending on this setting
|
; Repositories will use dependencies by default depending on this setting
|
||||||
DEFAULT_ENABLE_DEPENDENCIES = true
|
DEFAULT_ENABLE_DEPENDENCIES = true
|
||||||
; Enable heatmap on users profiles.
|
; Enable heatmap on users profiles.
|
||||||
ENABLE_USER_HEATMAP = true
|
ENABLE_USER_HEATMAP = true
|
||||||
; Enable Timetracking
|
; Enable Timetracking
|
||||||
ENABLE_TIMETRACKING = true
|
ENABLE_TIMETRACKING = true
|
||||||
; Default value for EnableTimetracking
|
; Default value for EnableTimetracking
|
||||||
; Repositories will use timetracking by default depending on this setting
|
; Repositories will use timetracking by default depending on this setting
|
||||||
DEFAULT_ENABLE_TIMETRACKING = true
|
DEFAULT_ENABLE_TIMETRACKING = true
|
||||||
; Default value for AllowOnlyContributorsToTrackTime
|
; Default value for AllowOnlyContributorsToTrackTime
|
||||||
; Only users with write permissions can track time if this is true
|
; Only users with write permissions can track time if this is true
|
||||||
DEFAULT_ALLOW_ONLY_CONTRIBUTORS_TO_TRACK_TIME = 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
|
; 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
|
; 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.
|
; 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
|
||||||
SHOW_REGISTRATION_BUTTON = true
|
SHOW_REGISTRATION_BUTTON = true
|
||||||
; Default value for AutoWatchNewRepos
|
; Default value for AutoWatchNewRepos
|
||||||
; When adding a repo to a team or creating a new repo all team members will watch the
|
; When adding a repo to a team or creating a new repo all team members will watch the
|
||||||
; repo automatically if enabled
|
; repo automatically if enabled
|
||||||
AUTO_WATCH_NEW_REPOS = true
|
AUTO_WATCH_NEW_REPOS = true
|
||||||
|
|
||||||
[webhook]
|
[webhook]
|
||||||
; Hook task queue length, increase if webhook shooting starts hanging
|
; Hook task queue length, increase if webhook shooting starts hanging
|
||||||
QUEUE_LENGTH = 1000
|
QUEUE_LENGTH = 1000
|
||||||
; Deliver timeout in seconds
|
; Deliver timeout in seconds
|
||||||
DELIVER_TIMEOUT = 5
|
DELIVER_TIMEOUT = 5
|
||||||
; Allow insecure certification
|
; Allow insecure certification
|
||||||
SKIP_TLS_VERIFY = false
|
SKIP_TLS_VERIFY = false
|
||||||
; Number of history information in each page
|
; Number of history information in each page
|
||||||
PAGING_NUM = 10
|
PAGING_NUM = 10
|
||||||
ALLOWED_HOST_LIST = ::1/128, 127.0.0.1/32
|
ALLOWED_HOST_LIST = ::1/128, 127.0.0.1/32
|
||||||
|
|
||||||
; We don't use mail
|
; We don't use mail
|
||||||
[mailer]
|
[mailer]
|
||||||
ENABLED = false
|
ENABLED = false
|
||||||
|
|
||||||
[cache]
|
[cache]
|
||||||
; Either "memory", "redis", or "memcache", default is "memory"
|
; Either "memory", "redis", or "memcache", default is "memory"
|
||||||
ADAPTER = memory
|
ADAPTER = memory
|
||||||
; For "memory" only, GC interval in seconds, default is 60
|
; For "memory" only, GC interval in seconds, default is 60
|
||||||
INTERVAL = 60
|
INTERVAL = 60
|
||||||
; For "redis" and "memcache", connection host address
|
; For "redis" and "memcache", connection host address
|
||||||
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
|
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
|
||||||
; memcache: `127.0.0.1:11211`
|
; memcache: `127.0.0.1:11211`
|
||||||
HOST =
|
HOST =
|
||||||
; Time to keep items in cache if not used, default is 16 hours.
|
; Time to keep items in cache if not used, default is 16 hours.
|
||||||
; Setting it to 0 disables caching
|
; Setting it to 0 disables caching
|
||||||
ITEM_TTL = 16h
|
ITEM_TTL = 16h
|
||||||
|
|
||||||
[session]
|
[session]
|
||||||
; Either "memory", "file", or "redis", default is "memory"
|
; Either "memory", "file", or "redis", default is "memory"
|
||||||
PROVIDER = file
|
PROVIDER = file
|
||||||
; Provider config options
|
; Provider config options
|
||||||
; memory: doesn't have any config yet
|
; memory: doesn't have any config yet
|
||||||
; file: session file path, e.g. `data/sessions`
|
; file: session file path, e.g. `data/sessions`
|
||||||
; redis: network=tcp,addr=:6379,password=macaron,db=0,pool_size=100,idle_timeout=180
|
; 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`
|
; 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
|
; Session cookie name
|
||||||
COOKIE_NAME = i_like_gitea
|
COOKIE_NAME = i_like_gitea
|
||||||
; If you use session in https only, default is false
|
; 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, default is true
|
||||||
ENABLE_SET_COOKIE = true
|
ENABLE_SET_COOKIE = true
|
||||||
; Session GC time interval in seconds, default is 86400 (1 day)
|
; 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 in seconds, default is 86400 (1 day)
|
||||||
SESSION_LIFE_TIME = 86400
|
SESSION_LIFE_TIME = 86400
|
||||||
|
|
||||||
[picture]
|
[picture]
|
||||||
AVATAR_UPLOAD_PATH = avatars
|
AVATAR_UPLOAD_PATH = avatars
|
||||||
REPOSITORY_AVATAR_UPLOAD_PATH = repo-avatars
|
REPOSITORY_AVATAR_UPLOAD_PATH = repo-avatars
|
||||||
; How Gitea deals with missing repository 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
|
; 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
|
REPOSITORY_AVATAR_FALLBACK_IMAGE = /img/repo_default.png
|
||||||
; Max Width and Height of uploaded avatars.
|
; Max Width and Height of uploaded avatars.
|
||||||
; This is to limit the amount of RAM used when resizing the image.
|
; This is to limit the amount of RAM used when resizing the image.
|
||||||
AVATAR_MAX_WIDTH = 4096
|
AVATAR_MAX_WIDTH = 4096
|
||||||
AVATAR_MAX_HEIGHT = 3072
|
AVATAR_MAX_HEIGHT = 3072
|
||||||
; Maximum alloved file size for uploaded avatars.
|
; Maximum alloved file size for uploaded avatars.
|
||||||
; This is to limit the amount of RAM used when resizing the image.
|
; 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"
|
; Chinese users can choose "duoshuo"
|
||||||
; or a custom avatar source, like: http://cn.gravatar.com/avatar/
|
; 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.
|
; This value will always be true in offline mode.
|
||||||
DISABLE_GRAVATAR = true
|
DISABLE_GRAVATAR = true
|
||||||
; Federated avatar lookup uses DNS to discover avatar associated
|
; Federated avatar lookup uses DNS to discover avatar associated
|
||||||
; with emails, see https://www.libravatar.org
|
; with emails, see https://www.libravatar.org
|
||||||
; This value will always be false in offline mode or when Gravatar is disabled.
|
; This value will always be false in offline mode or when Gravatar is disabled.
|
||||||
ENABLE_FEDERATED_AVATAR = false
|
ENABLE_FEDERATED_AVATAR = false
|
||||||
|
|
||||||
[attachment]
|
[attachment]
|
||||||
; Whether attachments are enabled. Defaults to `true`
|
; Whether attachments are enabled. Defaults to `true`
|
||||||
ENABLED = true
|
ENABLED = true
|
||||||
; Path for attachments. Defaults to `data/attachments`
|
; Path for attachments. Defaults to `data/attachments`
|
||||||
PATH = data/attachments
|
PATH = data/attachments
|
||||||
; One or more allowed types, e.g. image/jpeg|image/png
|
; One or more allowed types, e.g. image/jpeg|image/png
|
||||||
ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
|
ALLOWED_TYPES = image/jpeg|image/png|application/zip|application/gzip
|
||||||
; Max size of each file. Defaults to 4MB
|
; Max size of each file. Defaults to 4MB
|
||||||
MAX_SIZE = 4
|
MAX_SIZE = 4
|
||||||
; Max number of files per upload. Defaults to 5
|
; Max number of files per upload. Defaults to 5
|
||||||
MAX_FILES = 5
|
MAX_FILES = 5
|
||||||
|
|
||||||
[time]
|
[time]
|
||||||
; Specifies the format for fully outputted dates. Defaults to RFC1123
|
; Specifies the format for fully outputted dates. Defaults to RFC1123
|
||||||
@ -499,33 +500,28 @@ MAX_FILES = 5
|
|||||||
FORMAT =
|
FORMAT =
|
||||||
|
|
||||||
[log]
|
[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
|
MODE = console
|
||||||
|
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "Trace"
|
||||||
LEVEL = Warn
|
LEVEL = Warn
|
||||||
|
; Either "Trace", "Debug", "Info", "Warn", "Error", "Critical", default is "None"
|
||||||
STACKTRACE_LEVEL = None
|
STACKTRACE_LEVEL = None
|
||||||
logger.router.MODE = ,
|
logger.router.MODE = ,
|
||||||
logger.xorm.MODE = ,
|
logger.xorm.MODE = ,
|
||||||
logger.access.MODE =
|
logger.access.MODE = console
|
||||||
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
|
|
||||||
; Buffer length of the channel, keep it as it is if you don't know what it is.
|
; 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"
|
; 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{{ '}}' }}"
|
;ACCESS_LOG_TEMPLATE =
|
||||||
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
|
|
||||||
|
|
||||||
; Generic log modes
|
; Generic log modes
|
||||||
[log.x]
|
[log.x]
|
||||||
FLAGS = stdflags
|
FLAGS = stdflags
|
||||||
EXPRESSION =
|
EXPRESSION =
|
||||||
PREFIX =
|
PREFIX =
|
||||||
COLORIZE = false
|
COLORIZE = false
|
||||||
|
|
||||||
; For "console" mode only
|
; For "console" mode only
|
||||||
[log.console]
|
[log.console]
|
||||||
@ -536,54 +532,54 @@ COLORIZE = true
|
|||||||
|
|
||||||
; For "file" mode only
|
; For "file" mode only
|
||||||
[log.file]
|
[log.file]
|
||||||
LEVEL =
|
LEVEL =
|
||||||
; Set the file_name for the logger. If this is a relative path this
|
; Set the file_name for the logger. If this is a relative path this
|
||||||
; will be relative to ROOT_PATH
|
; will be relative to ROOT_PATH
|
||||||
FILE_NAME =
|
FILE_NAME =
|
||||||
; This enables automated log rotate(switch of following options), default is true
|
; 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 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 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
|
; Segment log daily, default is true
|
||||||
DAILY_ROTATE = true
|
DAILY_ROTATE = true
|
||||||
; delete the log file after n days, default is 7
|
; delete the log file after n days, default is 7
|
||||||
MAX_DAYS = 7
|
MAX_DAYS = 7
|
||||||
; compress logs with gzip
|
; compress logs with gzip
|
||||||
COMPRESS = true
|
COMPRESS = true
|
||||||
; compression level see godoc for compress/gzip
|
; compression level see godoc for compress/gzip
|
||||||
COMPRESSION_LEVEL = -1
|
COMPRESSION_LEVEL = -1
|
||||||
|
|
||||||
; For "conn" mode only
|
; For "conn" mode only
|
||||||
[log.conn]
|
[log.conn]
|
||||||
LEVEL =
|
LEVEL =
|
||||||
; Reconnect host for every single message, default is false
|
; Reconnect host for every single message, default is false
|
||||||
RECONNECT_ON_MSG = false
|
RECONNECT_ON_MSG = false
|
||||||
; Try to reconnect when connection is lost, default is false
|
; Try to reconnect when connection is lost, default is false
|
||||||
RECONNECT = false
|
RECONNECT = false
|
||||||
; Either "tcp", "unix" or "udp", default is "tcp"
|
; Either "tcp", "unix" or "udp", default is "tcp"
|
||||||
PROTOCOL = tcp
|
PROTOCOL = tcp
|
||||||
; Host address
|
; Host address
|
||||||
ADDR =
|
ADDR =
|
||||||
|
|
||||||
; For "smtp" mode only
|
; For "smtp" mode only
|
||||||
[log.smtp]
|
[log.smtp]
|
||||||
LEVEL =
|
LEVEL =
|
||||||
; Name displayed in mail title, default is "Diagnostic message from server"
|
; Name displayed in mail title, default is "Diagnostic message from server"
|
||||||
SUBJECT = Diagnostic message from server
|
SUBJECT = Diagnostic message from server
|
||||||
; Mail server
|
; Mail server
|
||||||
HOST =
|
HOST =
|
||||||
; Mailer user name and password
|
; Mailer user name and password
|
||||||
USER =
|
USER =
|
||||||
; Use PASSWD = `your password` for quoting if you use special characters in the password.
|
; 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, can be one or more, e.g. 1@example.com,2@example.com
|
||||||
RECEIVERS =
|
RECEIVERS =
|
||||||
|
|
||||||
[cron]
|
[cron]
|
||||||
; Enable running cron tasks periodically.
|
; Enable running cron tasks periodically.
|
||||||
ENABLED = true
|
ENABLED = true
|
||||||
; Run cron tasks when Gitea starts.
|
; Run cron tasks when Gitea starts.
|
||||||
RUN_AT_START = false
|
RUN_AT_START = false
|
||||||
|
|
||||||
@ -594,90 +590,90 @@ SCHEDULE = @every 10m
|
|||||||
; Repository health check
|
; Repository health check
|
||||||
[cron.repo_health_check]
|
[cron.repo_health_check]
|
||||||
SCHEDULE = @every 24h
|
SCHEDULE = @every 24h
|
||||||
TIMEOUT = 60s
|
TIMEOUT = 60s
|
||||||
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
|
; Arguments for command 'git fsck', e.g. "--unreachable --tags"
|
||||||
; see more on http://git-scm.com/docs/git-fsck
|
; see more on http://git-scm.com/docs/git-fsck
|
||||||
ARGS =
|
ARGS =
|
||||||
|
|
||||||
; Check repository statistics
|
; Check repository statistics
|
||||||
[cron.check_repo_stats]
|
[cron.check_repo_stats]
|
||||||
RUN_AT_START = true
|
RUN_AT_START = true
|
||||||
SCHEDULE = @every 24h
|
SCHEDULE = @every 24h
|
||||||
|
|
||||||
; Clean up old repository archives
|
; Clean up old repository archives
|
||||||
[cron.archive_cleanup]
|
[cron.archive_cleanup]
|
||||||
; Whether to enable the job
|
; Whether to enable the job
|
||||||
ENABLED = true
|
ENABLED = true
|
||||||
; Whether to always run at least once at start up time (if ENABLED)
|
; Whether to always run at least once at start up time (if ENABLED)
|
||||||
RUN_AT_START = true
|
RUN_AT_START = true
|
||||||
; Time interval for job to run
|
; Time interval for job to run
|
||||||
SCHEDULE = @every 24h
|
SCHEDULE = @every 24h
|
||||||
; Archives created more than OLDER_THAN ago are subject to deletion
|
; 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)
|
; Synchronize external user data (only LDAP user synchronization is supported)
|
||||||
[cron.sync_external_users]
|
[cron.sync_external_users]
|
||||||
; Synchronize external user data when starting server (default false)
|
; 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)
|
; 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)
|
; 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
|
; or only create new users if UPDATE_EXISTING is set to false
|
||||||
UPDATE_EXISTING = true
|
UPDATE_EXISTING = true
|
||||||
|
|
||||||
[git]
|
[git]
|
||||||
; Disables highlight of added and removed changes
|
; 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 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 number of allowed characters in a line in diff view
|
||||||
MAX_GIT_DIFF_LINE_CHARACTERS = 5000
|
MAX_GIT_DIFF_LINE_CHARACTERS = 5000
|
||||||
; Max number of files shown in diff view
|
; 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"
|
; Arguments for command 'git gc', e.g. "--aggressive --auto"
|
||||||
; see more on http://git-scm.com/docs/git-gc/
|
; 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
|
; 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
|
; Operation timeout in seconds
|
||||||
[git.timeout]
|
[git.timeout]
|
||||||
DEFAULT = 360
|
DEFAULT = 360
|
||||||
MIGRATE = 600
|
MIGRATE = 600
|
||||||
MIRROR = 300
|
MIRROR = 300
|
||||||
CLONE = 300
|
CLONE = 300
|
||||||
PULL = 300
|
PULL = 300
|
||||||
GC = 60
|
GC = 60
|
||||||
|
|
||||||
[mirror]
|
[mirror]
|
||||||
; Default interval as a duration between each check
|
; Default interval as a duration between each check
|
||||||
DEFAULT_INTERVAL = 8h
|
DEFAULT_INTERVAL = 8h
|
||||||
; Min interval as a duration must be > 1m
|
; Min interval as a duration must be > 1m
|
||||||
MIN_INTERVAL = 10m
|
MIN_INTERVAL = 10m
|
||||||
|
|
||||||
[api]
|
[api]
|
||||||
; Enables Swagger. True or false; default is true.
|
; Enables Swagger. True or false; default is true.
|
||||||
ENABLE_SWAGGER = true
|
ENABLE_SWAGGER = true
|
||||||
; Max number of items in a page
|
; Max number of items in a page
|
||||||
MAX_RESPONSE_ITEMS = 50
|
MAX_RESPONSE_ITEMS = 50
|
||||||
; Default paging number of api
|
; 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 and maximum number of items per page for git trees api
|
||||||
DEFAULT_GIT_TREES_PER_PAGE = 1000
|
DEFAULT_GIT_TREES_PER_PAGE = 1000
|
||||||
; Default size of a blob returned by the blobs API (default is 10MiB)
|
; Default size of a blob returned by the blobs API (default is 10MiB)
|
||||||
DEFAULT_MAX_BLOB_SIZE = 10485760
|
DEFAULT_MAX_BLOB_SIZE = 10485760
|
||||||
|
|
||||||
[oauth2]
|
[oauth2]
|
||||||
; Enables OAuth2 provider
|
; Enables OAuth2 provider
|
||||||
ENABLE = true
|
ENABLE = true
|
||||||
; Lifetime of an OAuth2 access token in seconds
|
; 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
|
; Lifetime of an OAuth2 access token in hours
|
||||||
REFRESH_TOKEN_EXPIRATION_TIME = 730
|
REFRESH_TOKEN_EXPIRATION_TIME = 730
|
||||||
; Check if refresh token got already used
|
; 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.
|
; 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]
|
[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
|
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]
|
[highlight.mapping]
|
||||||
|
|
||||||
[other]
|
[other]
|
||||||
SHOW_FOOTER_BRANDING = false
|
SHOW_FOOTER_BRANDING = false
|
||||||
; Show version information about Gitea and Go in the footer
|
; 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 template execution time in the footer
|
||||||
SHOW_FOOTER_TEMPLATE_LOAD_TIME = true
|
SHOW_FOOTER_TEMPLATE_LOAD_TIME = true
|
||||||
|
|
||||||
[markup.asciidoc]
|
[markup.asciidoc]
|
||||||
ENABLED = false
|
ENABLED = false
|
||||||
; List of file extensions that should be rendered by an external command
|
; List of file extensions that should be rendered by an external command
|
||||||
FILE_EXTENSIONS = .adoc,.asciidoc
|
FILE_EXTENSIONS = .adoc,.asciidoc
|
||||||
; External command to render all matching extensions
|
; 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.
|
; Don't pass the file on STDIN, pass the filename as argument instead.
|
||||||
IS_INPUT_FILE = false
|
IS_INPUT_FILE = false
|
||||||
|
|
||||||
[metrics]
|
[metrics]
|
||||||
; Enables metrics endpoint. True or false; default is false.
|
; Enables metrics endpoint. True or false; default is false.
|
||||||
ENABLED = false
|
ENABLED = false
|
||||||
; If you want to add authorization, specify a token here
|
; If you want to add authorization, specify a token here
|
||||||
TOKEN =
|
TOKEN =
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user