wslave 0.3.2 → 0.3.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/base/config/deploy-tools/nginx.vhost.erb +6 -0
- data/base/docker/nginx/nginx.vhost +17 -13
- data/wslave.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b847c2beb1bdaa632427b26f939ffe8246a46e144d314fa68360c10ac9f77622
|
|
4
|
+
data.tar.gz: b43e7df9d2b1dc863a3c4c977068199fd19b13bb65b6df5b0b9bec684445dfcf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa8655e9bc041985642319f6fd2fea482d79e93237a60dbd240dea3cf7fd08ead01165ef6a74985879c885c9bc5f053ba0b8d8c051ec82d85019e4f4eab283e5
|
|
7
|
+
data.tar.gz: b4926ab55b8ff77199b74bdfc18397a87fef8d344ff73c252d4ff3428b375b20d1be70a566278554796bdd3dcaf48ed5768b894b182f9160639f8e93f8b254a4
|
|
@@ -33,6 +33,10 @@ server {
|
|
|
33
33
|
log_not_found off;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
+
location /wp-json/ { # Resolves WP Gutenberg 404 issue
|
|
37
|
+
try_files $uri $uri/ /index.php;
|
|
38
|
+
}
|
|
39
|
+
|
|
36
40
|
location ~* \.(blade\.php)$ {
|
|
37
41
|
deny all;
|
|
38
42
|
}
|
|
@@ -48,4 +52,6 @@ server {
|
|
|
48
52
|
location ~* yarn\.lock$ {
|
|
49
53
|
deny all;
|
|
50
54
|
}
|
|
55
|
+
|
|
56
|
+
client_max_body_size 4096M;
|
|
51
57
|
}
|
|
@@ -30,21 +30,25 @@ server {
|
|
|
30
30
|
log_not_found off;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
location /wp-json/ { # Resolves WP Gutenberg 404 issue
|
|
34
|
+
try_files $uri $uri/ /index.php;
|
|
35
|
+
}
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
location ~* \.(blade\.php)$ {
|
|
38
|
+
deny all;
|
|
39
|
+
}
|
|
40
40
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
location ~* composer\.(json|lock)$ {
|
|
42
|
+
deny all;
|
|
43
|
+
}
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
location ~* package(-lock)?\.json$ {
|
|
46
|
+
deny all;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
location ~* yarn\.lock$ {
|
|
50
|
+
deny all;
|
|
51
|
+
}
|
|
48
52
|
|
|
49
|
-
|
|
53
|
+
client_max_body_size 4096M;
|
|
50
54
|
}
|
data/wslave.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'wslave'
|
|
3
|
-
s.version = '0.3.
|
|
3
|
+
s.version = '0.3.3'
|
|
4
4
|
s.licenses = ['GPL-3.0', 'AGPL-3.0']
|
|
5
5
|
s.summary = '"Word Slave" generates and controls a WordPress installation'
|
|
6
6
|
s.description = 'Word Slave includes the wslave command and a control library to generate a ' \
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wslave
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rei Kagetsuki
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-05-
|
|
11
|
+
date: 2021-05-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|