@fishawack/lab-env 4.13.0 → 4.15.0
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.
- package/.gitlab-ci.yml +26 -0
- package/CHANGELOG.md +69 -0
- package/commands/artisan.js +1 -3
- package/commands/check.js +2 -4
- package/commands/clean.js +2 -4
- package/commands/composer.js +1 -3
- package/commands/connect.js +1 -16
- package/commands/content.js +1 -3
- package/commands/craft.js +1 -3
- package/commands/deploy.js +1 -1
- package/commands/docker/mocha.js +1 -1
- package/commands/drush.js +1 -3
- package/commands/execute.js +8 -3
- package/commands/install.js +1 -3
- package/commands/npm.js +1 -3
- package/commands/php.js +1 -3
- package/commands/production.js +1 -3
- package/commands/regenerate.js +2 -4
- package/commands/reinstall.js +2 -4
- package/commands/run.js +1 -3
- package/commands/setup.js +1 -1
- package/commands/start.js +4 -14
- package/commands/test.js +2 -12
- package/commands/uninstall.js +1 -3
- package/commands/watch.js +9 -3
- package/commands/wp.js +1 -1
- package/core/0/docker-compose.yml +2 -0
- package/core/1/CHANGELOG.md +4 -0
- package/core/1/Dockerfile +6 -0
- package/core/1/docker-compose.yml +3 -0
- package/core/1/package.json +1 -1
- package/craftcms/3/apache/CHANGELOG.md +4 -0
- package/craftcms/3/apache/Dockerfile +11 -0
- package/craftcms/3/apache/httpd.conf +554 -0
- package/craftcms/3/apache/package.json +11 -0
- package/craftcms/3/docker-compose.yml +16 -12
- package/craftcms/3/php/CHANGELOG.md +4 -0
- package/craftcms/3/php/Dockerfile +32 -6
- package/craftcms/3/php/custom.ini +5 -0
- package/craftcms/3/php/entrypoint.sh +24 -0
- package/craftcms/3/php/package.json +11 -0
- package/drupal/9/apache/CHANGELOG.md +4 -0
- package/drupal/9/apache/package.json +1 -1
- package/drupal/9/docker-compose.yml +13 -7
- package/drupal/9/php/CHANGELOG.md +5 -0
- package/drupal/9/php/Dockerfile +9 -0
- package/drupal/9/php/entrypoint.sh +27 -0
- package/drupal/9/php/package.json +2 -2
- package/globals.js +52 -62
- package/intercept.sh +5 -0
- package/laravel/8/docker-compose.yml +12 -5
- package/laravel/8/nginx/CHANGELOG.md +4 -0
- package/laravel/8/nginx/nginx.conf +2 -0
- package/laravel/8/nginx/package.json +2 -2
- package/laravel/8/php/CHANGELOG.md +10 -0
- package/laravel/8/php/Dockerfile +11 -2
- package/laravel/8/php/custom.ini +5 -0
- package/laravel/8/php/entrypoint.sh +24 -0
- package/laravel/8/php/package.json +2 -2
- package/package.json +2 -2
- package/wordpress/0/CHANGELOG.md +4 -0
- package/wordpress/{5.7.2/wordpress → 0}/Dockerfile +4 -1
- package/wordpress/{5.7.2 → 0}/docker-compose.yml +4 -8
- package/wordpress/0/package.json +11 -0
- package/core/0/docker-compose-dev.yml +0 -5
- package/core/1/docker-compose-dev.yml +0 -6
- package/craftcms/3/nginx/nginx.conf +0 -37
- package/craftcms/3/php/custom.conf +0 -9
- package/drupal/9/docker-compose-dev.yml +0 -11
- package/laravel/8/docker-compose-dev.yml +0 -11
- package/laravel/8/php/custom.conf +0 -9
- package/wordpress/5.7.2/apache/.htaccess +0 -25
- /package/wordpress/{5.7.2/apache/uploads.ini → 0/custom.ini} +0 -0
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
server {
|
|
2
|
-
listen 80 default_server;
|
|
3
|
-
listen [::]:80 default_server;
|
|
4
|
-
root /app/web;
|
|
5
|
-
|
|
6
|
-
add_header X-Frame-Options "SAMEORIGIN";
|
|
7
|
-
add_header X-XSS-Protection "1; mode=block";
|
|
8
|
-
add_header X-Content-Type-Options "nosniff";
|
|
9
|
-
|
|
10
|
-
index index.php;
|
|
11
|
-
|
|
12
|
-
charset utf-8;
|
|
13
|
-
|
|
14
|
-
location / {
|
|
15
|
-
try_files $uri $uri/ /index.php?$query_string;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
location = /favicon.ico { access_log off; log_not_found off; }
|
|
19
|
-
location = /robots.txt { access_log off; log_not_found off; }
|
|
20
|
-
|
|
21
|
-
error_page 404 /index.php;
|
|
22
|
-
|
|
23
|
-
location ~ \.php$ {
|
|
24
|
-
fastcgi_pass php:9000;
|
|
25
|
-
include fastcgi_params;
|
|
26
|
-
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
27
|
-
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
location ~ \.(bmp|cur|gif|ico|jpe?g|png|svgz?|webp|pdf|dzi)$ {
|
|
31
|
-
add_header Access-Control-Allow-Origin *;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
location ~ /\.(?!well-known).* {
|
|
35
|
-
deny all;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
RewriteEngine on
|
|
2
|
-
RewriteCond %{HTTP:Authorization} ^(.*)
|
|
3
|
-
RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
|
|
4
|
-
|
|
5
|
-
RewriteBase /
|
|
6
|
-
RewriteRule ^index\.php$ - [L]
|
|
7
|
-
RewriteCond %{REQUEST_FILENAME} !-f
|
|
8
|
-
RewriteCond %{REQUEST_FILENAME} !-d
|
|
9
|
-
RewriteRule . /index.php [L]
|
|
10
|
-
|
|
11
|
-
# BEGIN WordPress
|
|
12
|
-
# The directives (lines) between "BEGIN WordPress" and "END WordPress" are
|
|
13
|
-
# dynamically generated, and should only be modified via WordPress filters.
|
|
14
|
-
# Any changes to the directives between these markers will be overwritten.
|
|
15
|
-
<IfModule mod_rewrite.c>
|
|
16
|
-
RewriteEngine On
|
|
17
|
-
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
|
|
18
|
-
RewriteBase /
|
|
19
|
-
RewriteRule ^index\.php$ - [L]
|
|
20
|
-
RewriteCond %{REQUEST_FILENAME} !-f
|
|
21
|
-
RewriteCond %{REQUEST_FILENAME} !-d
|
|
22
|
-
RewriteRule . /index.php [L]
|
|
23
|
-
</IfModule>
|
|
24
|
-
|
|
25
|
-
# END WordPress
|
|
File without changes
|