mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-12 05:50:16 +02:00
Merge branch 'docs_settings_fix' into 'master'
Remove erroneous indents from settings in service module docs See merge request allianceauth/allianceauth!1252
This commit is contained in:
commit
e81d75a782
@ -8,11 +8,11 @@ In your auth project's settings file, do the following:
|
|||||||
- Append the following to your local.py settings file:
|
- Append the following to your local.py settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# Discourse Configuration
|
# Discourse Configuration
|
||||||
DISCOURSE_URL = ''
|
DISCOURSE_URL = ''
|
||||||
DISCOURSE_API_USERNAME = ''
|
DISCOURSE_API_USERNAME = ''
|
||||||
DISCOURSE_API_KEY = ''
|
DISCOURSE_API_KEY = ''
|
||||||
DISCOURSE_SSO_SECRET = ''
|
DISCOURSE_SSO_SECRET = ''
|
||||||
```
|
```
|
||||||
|
|
||||||
## Install Docker
|
## Install Docker
|
||||||
|
@ -8,15 +8,15 @@
|
|||||||
- Append the following to your auth project's settings file:
|
- Append the following to your auth project's settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# Jabber Configuration
|
# Jabber Configuration
|
||||||
JABBER_URL = ""
|
JABBER_URL = ""
|
||||||
JABBER_PORT = 5223
|
JABBER_PORT = 5223
|
||||||
JABBER_SERVER = ""
|
JABBER_SERVER = ""
|
||||||
OPENFIRE_ADDRESS = ""
|
OPENFIRE_ADDRESS = ""
|
||||||
OPENFIRE_SECRET_KEY = ""
|
OPENFIRE_SECRET_KEY = ""
|
||||||
BROADCAST_USER = ""
|
BROADCAST_USER = ""
|
||||||
BROADCAST_USER_PASSWORD = ""
|
BROADCAST_USER_PASSWORD = ""
|
||||||
BROADCAST_SERVICE_NAME = "broadcast"
|
BROADCAST_SERVICE_NAME = "broadcast"
|
||||||
```
|
```
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
@ -12,16 +12,16 @@ In your auth project's settings file, do the following:
|
|||||||
- Append the following to the bottom of the settings file:
|
- Append the following to the bottom of the settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# PHPBB3 Configuration
|
# PHPBB3 Configuration
|
||||||
PHPBB3_URL = ''
|
PHPBB3_URL = ''
|
||||||
DATABASES['phpbb3'] = {
|
DATABASES['phpbb3'] = {
|
||||||
'ENGINE': 'django.db.backends.mysql',
|
'ENGINE': 'django.db.backends.mysql',
|
||||||
'NAME': 'alliance_forum',
|
'NAME': 'alliance_forum',
|
||||||
'USER': 'allianceserver-phpbb3',
|
'USER': 'allianceserver-phpbb3',
|
||||||
'PASSWORD': 'password',
|
'PASSWORD': 'password',
|
||||||
'HOST': '127.0.0.1',
|
'HOST': '127.0.0.1',
|
||||||
'PORT': '3306',
|
'PORT': '3306',
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
@ -12,16 +12,16 @@ In your auth project's settings file, do the following:
|
|||||||
- Append the following to the bottom of the settings file:
|
- Append the following to the bottom of the settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# SMF Configuration
|
# SMF Configuration
|
||||||
SMF_URL = ''
|
SMF_URL = ''
|
||||||
DATABASES['smf'] = {
|
DATABASES['smf'] = {
|
||||||
'ENGINE': 'django.db.backends.mysql',
|
'ENGINE': 'django.db.backends.mysql',
|
||||||
'NAME': 'alliance_smf',
|
'NAME': 'alliance_smf',
|
||||||
'USER': 'allianceserver-smf',
|
'USER': 'allianceserver-smf',
|
||||||
'PASSWORD': 'password',
|
'PASSWORD': 'password',
|
||||||
'HOST': '127.0.0.1',
|
'HOST': '127.0.0.1',
|
||||||
'PORT': '3306',
|
'PORT': '3306',
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
|
@ -14,18 +14,18 @@ In your auth project's settings file, do the following:
|
|||||||
- Append the following to the bottom of the settings file:
|
- Append the following to the bottom of the settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# Teamspeak3 Configuration
|
# Teamspeak3 Configuration
|
||||||
TEAMSPEAK3_SERVER_IP = '127.0.0.1'
|
TEAMSPEAK3_SERVER_IP = '127.0.0.1'
|
||||||
TEAMSPEAK3_SERVER_PORT = 10011
|
TEAMSPEAK3_SERVER_PORT = 10011
|
||||||
TEAMSPEAK3_SERVERQUERY_USER = 'serveradmin'
|
TEAMSPEAK3_SERVERQUERY_USER = 'serveradmin'
|
||||||
TEAMSPEAK3_SERVERQUERY_PASSWORD = ''
|
TEAMSPEAK3_SERVERQUERY_PASSWORD = ''
|
||||||
TEAMSPEAK3_VIRTUAL_SERVER = 1
|
TEAMSPEAK3_VIRTUAL_SERVER = 1
|
||||||
TEAMSPEAK3_PUBLIC_URL = ''
|
TEAMSPEAK3_PUBLIC_URL = ''
|
||||||
|
|
||||||
CELERYBEAT_SCHEDULE['run_ts3_group_update'] = {
|
CELERYBEAT_SCHEDULE['run_ts3_group_update'] = {
|
||||||
'task': 'allianceauth.services.modules.teamspeak3.tasks.run_ts3_group_update',
|
'task': 'allianceauth.services.modules.teamspeak3.tasks.run_ts3_group_update',
|
||||||
'schedule': crontab(minute='*/30'),
|
'schedule': crontab(minute='*/30'),
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### Download Installer
|
### Download Installer
|
||||||
|
@ -9,10 +9,10 @@ In your auth project's settings file, do the following:
|
|||||||
- Append the following to your local.py settings file:
|
- Append the following to your local.py settings file:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# XenForo Configuration
|
# XenForo Configuration
|
||||||
XENFORO_ENDPOINT = 'example.com/api.php'
|
XENFORO_ENDPOINT = 'example.com/api.php'
|
||||||
XENFORO_DEFAULT_GROUP = 0
|
XENFORO_DEFAULT_GROUP = 0
|
||||||
XENFORO_APIKEY = 'yourapikey'
|
XENFORO_APIKEY = 'yourapikey'
|
||||||
```
|
```
|
||||||
|
|
||||||
## XenAPI
|
## XenAPI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user