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
# Template Updated At 2019-04-17 | |
upstream php_backend_%domain_idn%_%web_ssl_port% { | |
server %backend_lsnr%; | |
#server %backend_lsnr% backup; | |
} | |
server { | |
listen %ip%:%web_ssl_port%; | |
server_name %domain_idn% %alias_idn%; |
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
MODx Ace Material Theme | |
1. Системные настройки > Пространство имен "ace": | |
Размер шрифта: 13px | |
Высота области редактирования: 560 | |
Невидимые символы: Да | |
Мягкая табуляция: Нет | |
Размер табуляции: 2 | |
Тема редактора: tomorrow_night |
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
#!/bin/bash | |
# | |
# Found on StackOverflow: | |
# http://stackoverflow.com/a/9304264/3765 | |
# | |
if [ ! -f ./app/etc/local.xml.template ]; then | |
echo "-- ERROR" | |
echo "-- This doesn't look like a Magento install. Please make sure" | |
echo "-- that you are running this from the Magento main doc root dir" |