Skip to content

Commit

Permalink
#20 - Remove unsupported feature
Browse files Browse the repository at this point in the history
  • Loading branch information
blackandred committed Nov 27, 2019
1 parent 4452ffd commit 953404d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
2 changes: 0 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,6 @@ ENV DEBIAN_FRONTEND=noninteractive \
TAIGA_ENABLE_EVENTS=false \
# Hostname for events server
TAIGA_EVENTS_HOST=events \
# Should Taiga automatically redirect to SSL version of Taiga?
TAIGA_REDIRECT_TO_SSL=false \
# Hostname of your instance (domain ex. riotkit.org or subdomain - board.riotkit.org)
TAIGA_HOSTNAME=localhost \
# Set to `true` to enable the LDAP authentication.
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ make start
# tadam...
```

##### First log-in to the application, default username and password

To log-in first time you should go to the [login page](http://localhost/login?next=%252Fdiscover) and enter "admin" as username, and "123123" as password.
You can also log-in to the Django administration panel at http://localhost/admin/ (please remember about the slash at the end)

#### Configuring LDAP

LDAP support can optionally be enabled by setting the `TAIGA_LDAP` environment variable to `true`. See the Dockerfile for a list of the environment variables used for configuring LDAP and their descriptions.
Expand Down Expand Up @@ -141,9 +146,6 @@ List of all environment variables that could be used.
# Hostname for events server
- TAIGA_EVENTS_HOST # (default: events)

# Should Taiga automatically redirect to SSL version of Taiga?
- TAIGA_REDIRECT_TO_SSL # (default: false)

# Hostname of your instance (domain ex. riotkit.org or subdomain - board.riotkit.org)
- TAIGA_HOSTNAME # (default: localhost)

Expand Down Expand Up @@ -237,6 +239,9 @@ List of all environment variables that could be used.

- TAIGA_GID # (default: 1000)

# List of plugins to enable eg. "slack, other, other", "slack"
- TAIGA_PLUGINS # (default: "")


```
Expand Down
8 changes: 0 additions & 8 deletions conf/nginx/nginx.conf.j2
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,6 @@ http {
keepalive_timeout 65;
#gzip on;

{% if TAIGA_REDIRECT_TO_SSL.lower() == 'true' %}
server {
listen 80 default_server;
server_name _;
return 301 https://$server_name$request_uri;
}
{% endif %}

server {
listen 80 default_server;
server_name _;
Expand Down

0 comments on commit 953404d

Please sign in to comment.