Skip to content

Commit 8211a3a

Browse files
authored
Merge pull request WordOps#174 from WordOps/updating-configuration
Updating configuration
2 parents c94d126 + 1cf1d16 commit 8211a3a

25 files changed

+328
-329
lines changed

.gitattributes

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Documents
5+
*.md text
6+
*.tex text diff=tex
7+
*.adoc text
8+
*.textile text
9+
*.mustache text
10+
*.csv text
11+
*.tab text
12+
*.tsv text
13+
*.txt text
14+
*.sql text
15+
16+
# Scripts
17+
*.bash text eol=lf
18+
*.fish text eol=lf
19+
*.sh text eol=lf
20+
21+
# Source files
22+
# ============
23+
*.pxd text diff=python
24+
*.py text diff=python
25+
*.py3 text diff=python
26+
*.pyc text diff=python
27+
*.pyd text diff=python
28+
*.pyo text diff=python
29+
*.pyw text diff=python
30+
*.pyx text diff=python
31+
*.pyz text diff=python
32+
33+
34+
#
35+
# Exclude files from exporting
36+
#
37+
38+
.gitattributes export-ignore
39+
.gitignore export-ignore

.github/workflows/main.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
sudo: required
2-
dist: xenial
2+
dist: bionic
33

44
language: bash
55

66
notifications:
7-
slack: wordops:MyZBNbI7JfhbAi3YyFckMdaa
87
webhooks:
98
secure: "JiGtzYplTyFg/L6Rsi7ptEQIV29O5qCWU2Zf5pLITsQrBrQO4cIXXp9G4Z+cenXjfIiqbqIgU0US3zXeIAl4g14xdfzmMYeMMwuKBpI8afMYv8MD6ldoP0MTFHQfROE6OXxKLVUvZn1R0oLLU1fzVSI0qGjNkt20cf/Lrt/reH/zS5hAI92kWI3u2zPu7Zn/g/a8MO/Y3Iv7v1PSQaVkVJVqtOK3U2GJqhIv2G1AVcaPb7Nh/V2zm2dDYBVT0UotBnlBUcUXbEMP77D9pjtWXd1/0rWuJIHixMjwUybpZqY75UMee5INynU6OZRsv029LRHAIMkWhfBkdVN/U5jhQJzui14+vRQrb5nfUMG8Cd8INojDlu6dk/ps2GzTCCXBITeMQKAouUoHD2LEbsNp17xi1K4ZlKb3+0lrOAiS4JYFE6wOo4yMlLTYoquYSqk7AuxuUS8A5OD5MYxhk9uafiTSxKFOo39KYWTSaACsPD8q1swaTSjoYm9skyZvIkIFq5bHBCYEGFe6X/NY9l5tz3hSe+TJOerCHsg+dXVuQl+pIp5nw2as9TH9ox5Vgqc9Zh4GbTDQVvdAmUpmlsZ/SKoOMCkmkB1aRNFq/7RnERIJyAEGJbauHWmjtOM4cCxesl0L0b2Eab89zQpSn7pzE8JTiJgpzCUc22p653PTaqM="
109

@@ -22,15 +21,15 @@ before_script:
2221
- sudo rm -rf /etc/mysql
2322
- sudo bash -c 'echo example.com > /etc/hostname'
2423
- unset LANG
24+
- sudo apt-get update --allow-releaseinfo-change -qq
2525
- sudo apt-get -qq purge mysql* graphviz* redis*
2626
- sudo apt-get install -qq git python3-setuptools python3-dev python3-apt ccze tree
2727
- sudo apt-get -qq autoremove --purge
2828

2929

3030
after_script:
31-
- sudo cat /var/log/wo/test.log | ccze -A -p syslog
31+
- sudo cat /var/log/wo/install.log | ccze -A -p syslog
3232
- sudo bash install --purge
33-
- sudo curl --progress-bar --upload-file /var/log/wo/wordops.log https://transfer.vtbox.net/"$(basename wordops.log)" && echo "" | sudo tee -a $HOME/.transfer.log && echo ""
3433

3534

3635
script:

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88

99
### v3.9.x - [Unreleased]
1010

11+
### v3.9.9.3 - [Unreleased]
12+
13+
#### Added
14+
15+
- [STACK] Add Nginx TLS 1.3 0-RTT configuration
16+
17+
#### Changed
18+
19+
- [STACK] New Nginx package built with OpenSSL_1.1.1d and the latest ngx_brotli module
20+
21+
#### Fixed
22+
23+
- `wo stack upgrade` when using nginx-ee
24+
- `wo secure --auth`
25+
- `wo secure --sshport` not working with default ssh config
26+
- Issues after APT repositories informations changed
27+
- `www` was added to WordPress site url with subdomains [Issue #178](https://github.com/WordOps/WordOps/issues/178)
28+
- Issuing certificate with acme.sh for sub.sub-domains not working
29+
1130
### v3.9.9.2 - 2019-10-04
1231

1332
#### Added

gitconfig.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env python3
2+
13
import configparser
24
import os
35
import re

0 commit comments

Comments
 (0)