Trying to hide by moving to a sub-folder
This commit is contained in:
22
other/archive/XWiki/0/README.md
Normal file
22
other/archive/XWiki/0/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# XWiki
|
||||
|
||||
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility. XWiki is an enterprise wiki. It includes WYSIWYG editing, OpenDocument based document import/export, semantic annotations and tagging, and advanced permissions management.
|
||||
|
||||
As an application wiki, XWiki allows for the storing of structured data and the execution of server side script within the wiki interface. Scripting languages including Velocity, Apache Groovy, Python, Ruby and PHP can be written directly into wiki pages using wiki macros. User created data structures can be defined in wiki documents and instances of those structures can be attached to wiki documents, stored in a database, and queried using either Hibernate query language or XWiki's own query language.
|
||||
|
||||
XWiki.org's extension wiki is home to XWiki extensions ranging from code snippets which can be pasted into wiki pages to loadable core modules. Many of XWiki Enterprise's features are provided by extensions which are bundled with it.
|
||||
|
||||
## Upgrade Notices
|
||||
|
||||
* To 11.1 - If you are receiving an HTTP 500 error after upgrading, you need to make the change [described here](https://www.xwiki.org/xwiki/bin/view/ReleaseNotes/Data/XWiki/11.1/#HIntroductionoftheEventStreamStore)
|
||||
|
||||
## Popular Configuration Articles
|
||||
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Configuration/]
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/Virtualization/]
|
||||
* [https://www.xwiki.org/xwiki/bin/view/Documentation/AdminGuide/ShortURLs/]
|
||||
|
||||
### TODO
|
||||
|
||||
* Fix issue with some page assets being delivered over http instead of https
|
||||
* Document setting up domain DNS for [wildcard Let's Encrypt certificates](https://docs.traefik.io/configuration/acme/#wildcard-domains)
|
||||
68
other/archive/XWiki/0/docker-compose.yml
Normal file
68
other/archive/XWiki/0/docker-compose.yml
Normal file
@@ -0,0 +1,68 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
xwiki:
|
||||
image: xwiki:stable-postgres-tomcat
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
DB_HOST: postgresql
|
||||
DB_DATABASE: xwiki_db
|
||||
DB_USER: xwiki_user
|
||||
{{- if .Values.DB_USER_PASS}}
|
||||
DB_PASSWORD: ${DB_USER_PASS}
|
||||
{{- end}}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
traefik.enable: true
|
||||
### Start Web Segment
|
||||
traefik.web.frontend.entryPoints: http, https
|
||||
traefik.web.frontend.headers.forceSTSHeader: true
|
||||
traefik.web.frontend.headers.referrerPolicy: no-referrer # Security enhancement (Prevents leaking of referer information)
|
||||
traefik.web.frontend.headers.SSLRedirect: true
|
||||
traefik.web.frontend.headers.STSPreload: true
|
||||
traefik.web.frontend.headers.STSSeconds: 15552000
|
||||
traefik.web.frontend.passHostHeader: true
|
||||
traefik.web.frontend.rule: "Host:${TRAEFIK_HOST}" # HostRegexp:${TRAEFIK_HOST},{subdomain:.+}.${TRAEFIK_HOST}
|
||||
traefik.web.port: "8080"
|
||||
### End Web Segment
|
||||
links:
|
||||
- postgresql
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/XWiki:/usr/local/xwiki
|
||||
postgresql:
|
||||
image: postgres:alpine
|
||||
dns:
|
||||
- 1.1.1.1
|
||||
- 1.0.0.1
|
||||
- 2606:4700:4700::1111
|
||||
- 2606:4700:4700::1001
|
||||
environment:
|
||||
POSTGRES_INITDB_ARGS: "--encoding=UTF8"
|
||||
POSTGRES_DB: xwiki_db
|
||||
{{- if .Values.DB_ROOT_PASS}}
|
||||
POSTGRES_ROOT_PASSWORD: ${DB_ROOT_PASS}
|
||||
{{- end}}
|
||||
POSTGRES_USER: xwiki_user
|
||||
{{- if .Values.DB_USER_PASS}}
|
||||
POSTGRES_PASSWORD: ${DB_USER_PASS}
|
||||
{{- end}}
|
||||
labels:
|
||||
io.rancher.container.pull_image: always
|
||||
{{- if .Values.HOST_LABEL}}
|
||||
io.rancher.scheduler.affinity:host_label: ${HOST_LABEL}
|
||||
{{- end}}
|
||||
restart: on-failure
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro # Syncronize time of container with the host system
|
||||
- /etc/timezone:/etc/timezone:ro # Syncronize timezone of container with the host system
|
||||
- /Persistent/${DATA_DIR}/Database:/var/lib/postgresql/data
|
||||
50
other/archive/XWiki/0/rancher-compose.yml
Normal file
50
other/archive/XWiki/0/rancher-compose.yml
Normal file
@@ -0,0 +1,50 @@
|
||||
version: '2'
|
||||
catalog:
|
||||
name: XWiki
|
||||
version: latest
|
||||
# description:
|
||||
# minimum_rancher_version:
|
||||
# maximum_rancher_version:
|
||||
# upgrade_from:
|
||||
questions:
|
||||
|
||||
- variable: "HOST_LABEL"
|
||||
label: "Host Label Key/Value Pair"
|
||||
description: |
|
||||
The Label Key/Value pair of the host which containers should be deployed
|
||||
default: "host.id=Host3"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
- variable: "TRAEFIK_HOST"
|
||||
label: "Public Host Domain"
|
||||
description: |
|
||||
The host that Traefik will use to provide public access.
|
||||
Separate multiple domains by using a comma.
|
||||
default: "subdomain.domain.tld"
|
||||
required: true
|
||||
type: string
|
||||
|
||||
- variable: "DB_ROOT_PASS"
|
||||
label: "Database Root Password"
|
||||
description: |
|
||||
A secure password to be used by the "root" database user.
|
||||
# default:
|
||||
required: false
|
||||
type: password
|
||||
|
||||
- variable: "DB_USER_PASS"
|
||||
label: "Database User Password"
|
||||
description: |
|
||||
A secure password to be used by the "xwiki_user" database user.
|
||||
# default:
|
||||
required: false
|
||||
type: password
|
||||
|
||||
- variable: "DATA_DIR"
|
||||
label: "Data Directory"
|
||||
description: |
|
||||
The directory to store persistent data for the stack.
|
||||
default: "Personal/XWiki"
|
||||
required: true
|
||||
type: string
|
||||
8
other/archive/XWiki/config.yml
Normal file
8
other/archive/XWiki/config.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
name: XWiki
|
||||
description: |
|
||||
XWiki is a free wiki software platform written in Java with a design emphasis on extensibility.
|
||||
version: latest
|
||||
category: Wiki
|
||||
maintainer: WilliamMiceli
|
||||
# license:
|
||||
# projectURL:
|
||||
Reference in New Issue
Block a user