VirtuBox
69879eb264
Merge pull request #412 from WordOps/updating-configuration
...
Merge branch 'master' into updating-configuration
2022-01-17 11:34:40 +01:00
VirtuBox
441461689d
Fix actions
2022-01-17 10:53:47 +01:00
VirtuBox
aa5633b137
Fix actions
2022-01-17 10:49:07 +01:00
VirtuBox
f9b69de156
Another github actions fix
2022-01-17 10:44:40 +01:00
VirtuBox
90cbc8a323
fix github actions
2022-01-17 10:40:20 +01:00
VirtuBox
f76f2116ed
Merge branch 'master' into updating-configuration
2022-01-17 10:34:06 +01:00
VirtuBox
182b5eb179
Merge pull request #400 from WordOps/updating-configuration
...
Fix WordOps install script
2021-09-15 19:17:50 +02:00
VirtuBox
a046041b01
Merge pull request #365 from atastycookie/patch-1
...
Removing duplicated strings for README.md file: Apps & Tools: MySQLTuner
2021-09-15 19:03:54 +02:00
VirtuBox
d6e50bcd72
Merge pull request #369 from techieshark/patch-1
...
Fix typo in help text
2021-09-15 19:03:18 +02:00
VirtuBox
578396e491
Merge pull request #371 from bob-swinkels/master
...
Escaping of metacharacters in regex strings in wo/cli/templates/map-wp.mustache
2021-09-15 19:02:43 +02:00
VirtuBox
efde6fd51c
Update install script date
2021-09-15 18:58:29 +02:00
VirtuBox
80dd46f886
Update install
2021-09-15 18:51:43 +02:00
VirtuBox
02764e4b64
Merge pull request #399 from WordOps/updating-configuration
...
Fix wo install
2021-09-15 18:02:22 +02:00
VirtuBox
dab449c8dc
Fix setuptools version
2021-09-15 17:42:21 +02:00
VirtuBox
593478352a
Update requirements.txt
2021-09-15 17:34:55 +02:00
VirtuBox
f9f1bf5b90
Update setup.py
2021-09-15 17:34:37 +02:00
VirtuBox
18a5e2a406
Update install
2021-09-15 17:34:08 +02:00
VirtuBox
7c3c612def
Update setup.py
2021-09-15 14:24:20 +02:00
VirtuBox
38cf9d37b0
Update requirements.txt
2021-09-15 14:24:06 +02:00
VirtuBox
395c1a9147
Update requirements.txt
2021-09-15 14:23:41 +02:00
VirtuBox
b03549cfd6
Merge pull request #390 from yogeshbeniwal/fix/pwa-serviceworker-caching
...
Cache exception for PWA Service Worker
2021-09-14 21:04:27 +02:00
VirtuBox
66edfaa495
Merge pull request #391 from tdtgit/patch-1
...
Update new Cloudflare IPs range
2021-09-14 21:04:00 +02:00
VirtuBox
cccc466a9b
Merge pull request #392 from ceefour/patch-1
...
fix: Support arm64 architecture (e.g. AWS Graviton2)
2021-09-14 21:03:34 +02:00
VirtuBox
65573c8a6e
Merge pull request #388 from nova0052/patch-1
...
fix acme.sh to use letsencrypt by default in new installs
2021-09-14 21:02:42 +02:00
VirtuBox
8a518f770f
Update setup.py
2021-09-14 21:01:30 +02:00
VirtuBox
dc467ceadb
Update requirements.txt
2021-09-14 21:00:33 +02:00
Hendy Irawan
000e5c70ef
fix: Support arm64 architecture (e.g. AWS Graviton2)
2021-08-30 13:47:33 +07:00
Argus Duong
5bf3d06f30
Update new Cloudflare IPs range
...
WordOps already have cron to update these range but it only run weekly. So I've updated it to the latest.
2021-07-26 11:49:32 +07:00
Yogesh Beniwal
0030856d72
Cache exception for PWA Service Worker
2021-07-16 23:24:06 +08:00
Jose Lujano
881d56cd6e
fix acme.sh to use letsencrypt by default in new installs
...
update install script so that acme.sh will use LetsEncrypt instead of ZeroSSL when the `--letsencrypt` parameter is used.
2021-06-24 10:50:42 -07:00
VirtuBox
68cc21aa84
Merge pull request #377 from yogeshbeniwal/fix-redis-repo
...
Update Redis repo to Redis Labs team
2021-05-20 17:16:39 +02:00
VirtuBox
c698e20697
Merge pull request #381 from WordOps/updating-configuration
...
Updating configuration
2021-05-20 17:11:54 +02:00
VirtuBox
0f1cc50b85
set php7.4 as default
2021-05-20 17:09:45 +02:00
VirtuBox
e2db5b21b2
Merge pull request #375 from WordOps/dependabot/add-v2-config-file
...
Upgrade to GitHub-native Dependabot
2021-05-20 17:06:48 +02:00
VirtuBox
89c77b8c0c
Fix nginx already installed on GitHub Actions
2021-05-20 16:53:03 +02:00
VirtuBox
81cb326c37
Fix install and testing
2021-05-20 16:28:32 +02:00
VirtuBox
e2e9b64b6b
Update main.yml
2021-05-20 15:22:25 +02:00
Yogesh Beniwal
4171adeca0
Update Redis repo to Redis Labs team
2021-05-05 13:11:22 +08:00
dependabot-preview[bot]
0e6dd270bf
Upgrade to GitHub-native Dependabot
2021-04-28 22:32:55 +00:00
Bob Swinkels
cbe42ab2bb
Fix wildcard character in regex strings.
...
The map directive contains regexes (strings starting with a tilde) that
contain 'asterisk' characters. In a regex, the asterisk character is a
metacharacter, and in this context, it is meant as a wildcard character.
To achieve the desired result, we should place a dot in front of the
asterisk character.
2021-04-19 15:36:38 +02:00
Bob Swinkels
8403af51f5
Fix escaping of regex metacharacters.
...
The map directive contains regexes (strings starting with a tilde) that
contain 'dot' characters. In a regex, the dot character is a
metacharacter and should be escaped by putting a backslash before it.
2021-04-19 15:25:28 +02:00
Peter W
8d33b8225f
Fix typo in help text
...
Fixes #368
2021-04-10 20:19:40 +10:00
Roman Ananyev
01bed1e283
Remove duplicates for Apps & Tools: MySQLTuner
2021-04-08 12:17:05 +04:00
VirtuBox
0e7bc7fe32
Fix xenial install
2021-02-17 15:19:19 +01:00
VirtuBox
c80bb64662
Merge pull request #353 from nsgoyat/patch-1
...
Update brotli.mustache
2021-02-11 16:40:55 +01:00
Narender Chopra
f501e654cc
Update brotli.mustache
...
'brotli_comp_level 6' tends to be the most optimal and commonly used level.
'brotli_buffers' has been deprecated: https://github.com/google/ngx_brotli#brotli_buffers
2021-01-10 15:09:15 +05:30
VirtuBox
2dc3ed560f
Fix zstd compression on Debian
2021-01-08 14:49:09 +01:00
VirtuBox
383b9d4250
Add MariaDB release into wo.conf
2020-11-13 14:09:34 +01:00
VirtuBox
b225b6e339
Bump version for testing
2020-11-10 16:28:04 +01:00
VirtuBox
64f557857b
Update dependencies
2020-11-10 14:05:04 +01:00