This file contains hidden or 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
Hello, | |
| |
We have received the attached notice that you are posting, hosting or distributing trademark infringing content on our network. Please review the attached notice and take appropriate action. The entire original report is included below so you may contact the reporter directly if you wish to follow up with them. | |
| |
Regards, | |
Amazon Web Services | |
| |
====== Details ====== | |
| |
Abuse Case Number: 14793007935-1 |
This file contains hidden or 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
@foomanNZ | |
34m34 minutes ago | |
I am pleased to see that Magento took the initiative and has been working on a unified standard that can be used across the entire Magento ecosystem. http://bit.ly/31B4FgL #CodingStandards | |
@SergiiShymko | |
I would not count Cloud as a separate version. It’s rather an infrastructure that hosts Commerce version. All parts of the environment are known: Fastly/Varnish, CDN, Redis cache & sessions, etc. | |
@IsaiahBollinger | |
My concern is more around how big the upgrade changes are in terms of number of files and features added for Magento. Also there are now 3 versions of Magento, Open Source, Commerce, and Cloud so its more work for module vendors to keep up with compatibility. | |
This file contains hidden or 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
#file proxysql.cfg | |
# This config file is parsed using libconfig , and its grammar is described in: | |
# http://www.hyperrealm.com/libconfig/libconfig_manual.html#Configuration-File-Grammar | |
# Grammar is also copied at the end of this file | |
datadir="/var/lib/proxysql" |
This file contains hidden or 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
FROM debian:jessie | |
ENV BUILD_PKG "automake bzip2 cmake make g++ gcc git-core libssl-dev patch binutils" | |
RUN apt-get update && apt-get install -y \ | |
libssl1.0.0 openssl ssl-cert $BUILD_PKG \ | |
vim mysql-client && \ | |
cd /usr/local/src && \ | |
git clone -b 2018-04-01 --depth 1 --single-branch https://github.com/google/re2.git && \ | |
git clone -b v2.0.0 --depth 1 --single-branch https://github.com/sysown/proxysql.git && \ |
This file contains hidden or 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
#file proxysql.cfg | |
# This config file is parsed using libconfig , and its grammar is described in: | |
# http://www.hyperrealm.com/libconfig/libconfig_manual.html#Configuration-File-Grammar | |
# Grammar is also copied at the end of this file | |
datadir="/var/lib/proxysql" | |
admin_variables= | |
{ |
This file contains hidden or 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
FROM debian:jessie | |
ENV BUILD_PKG "automake bzip2 cmake make g++ gcc git-core libssl-dev patch binutils" | |
RUN apt-get update && apt-get install -y \ | |
libssl1.0.0 openssl ssl-cert $BUILD_PKG \ | |
vim mysql-client && \ | |
cd /usr/local/src && \ | |
git clone -b 2018-04-01 --depth 1 --single-branch https://github.com/google/re2.git && \ | |
git clone -b v1.4.8 --depth 1 --single-branch https://github.com/sysown/proxysql.git && \ |