-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor, use for each folder own container
- Loading branch information
Showing
44 changed files
with
320 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
server { | ||
listen 80; | ||
|
||
server_name localhost; | ||
root /var/www/html/; | ||
|
||
set $shopware_env 'docker'; | ||
set $fpm_upstream 127.0.0.1:9000; | ||
|
||
## Include shopware configuration. | ||
include global/shopware.conf; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
server { | ||
listen 80; | ||
|
||
index index.php index.html; | ||
server_name localhost; | ||
root /var/www/html/public; | ||
|
||
# Shopware install / update | ||
location /recovery/install { | ||
index index.php; | ||
try_files $uri /recovery/install/index.php$is_args$args; | ||
} | ||
|
||
location /recovery/update/ { | ||
location /recovery/update/assets { | ||
} | ||
if (!-e $request_filename){ | ||
rewrite . /recovery/update/index.php last; | ||
} | ||
} | ||
|
||
location / { | ||
try_files $uri /index.php$is_args$args; | ||
} | ||
|
||
location ~ \.php$ { | ||
fastcgi_split_path_info ^(.+\.php)(/.+)$; | ||
include fastcgi.conf; | ||
fastcgi_param HTTP_PROXY ""; | ||
fastcgi_buffers 8 16k; | ||
fastcgi_buffer_size 32k; | ||
client_max_body_size 24M; | ||
client_body_buffer_size 128k; | ||
fastcgi_pass 127.0.0.1:9000; | ||
http2_push_preload on; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
79 changes: 0 additions & 79 deletions
79
images/nginx/rootfs/etc/nginx/sites-enabled/10-platform.conf
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.