app/design/frontend/Vendor/theme_name/Magento_Catalog/page_layout/catalog_product_view.xml
<move element="product.info.details" destination="product.info.main" after="product_options_wrapper_bottom"/>
app/design/frontend/Vendor/theme_name/Magento_Catalog/page_layout/catalog_product_view.xml
<move element="product.info.details" destination="product.info.main" after="product_options_wrapper_bottom"/>
php -f bin/magento setup:upgrade
sudo shutdown -h now
sudo fuser -k 80/tcp ; sudo /etc/init.d/nginx restart
cd /opt/letsencrypt
./letsencrypt-auto certonly -a webroot --webroot-path=/usr/share/nginx/html -d example.com -d www.example.com
sudo ls -l /etc/letsencrypt/live/your_domain_name
sudo openssl dhparam -out /etc/ssl/certs/dhparam.pem 2048
sudo ln -s /etc/nginx/sites-available/example.com.conf /etc/nginx/sites-enabled/example.com.conf
Set Up Auto Renewal
/opt/letsencrypt/letsencrypt-auto renew
1. Click on Start –> In search box, type cmd –> Then “CMD” will be
displayed in the search –> Now right-click on “CMD” —> Select “Run as administrator”.
2. Now enter this command
netsh winsock reset –> Press Enter.
Restart your PC.
Create /etc/nginx/cloudflare-allow.conf
# https://www.cloudflare.com/ips
# IPv4
allow 199.27.128.0/21;
allow 173.245.48.0/20;
allow 103.21.244.0/22;
allow 103.22.200.0/22;
allow 103.31.4.0/22;
allow 141.101.64.0/18;
allow 108.162.192.0/18;
allow 190.93.240.0/20;
allow 188.114.96.0/20;
allow 197.234.240.0/22;
allow 198.41.128.0/17;
allow 162.158.0.0/15;
# IPv6
allow 2400:cb00::/32;
allow 2606:4700::/32;
allow 2803:f800::/32;
allow 2405:b500::/32;
allow 2405:8100::/32;
Then in your /etc/nginx/sites-available/site.com add:
server {
listen 80; ## listen for ipv4; this line is default and implied
listen [::]:80 default ipv6only=on; ## listen for ipv6
include /etc/nginx/cloudflare-allow.conf;
deny all;
server_name direct.site.com www.site.com site.com;
#...the rest of your config here...
}
ssh -p portnumber mysite.com
sudo pkill php5-fpm; sudo service php5-fpm start
sudo apt-get remove --purge mysql-server mysql-client mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
sudo apt install mysql-server
To change max file upload size to 100MB
Edit…
vim /etc/php5/fpm/php.ini
Set…
upload_max_filesize = 100M post_max_size = 100M
Add following line to http{..} block in nginx config: /etc/nginx/nginx.conf
http { #... client_max_body_size 100m; #... }
service php5-fpm reload service nginx reload