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
# Last updated March, 2022 for Apple silicon Macs | |
# Install Homebrew if you don't already have it: https://brew.sh | |
# install nano from homebrew | |
brew install nano nanorc | |
# update your nanorc file | |
echo 'include "/usr/local/share/nanorc/*.nanorc"' >> ~/.nanorc |
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
# Конфигурация для HTTP-сервера | |
server { | |
# Указываем доменное имя | |
server_name new-automation.ru; | |
# Путь к корневой директории сайта | |
root /var/www/opencart/public_html; | |
# Указываем, какие файлы должны обрабатываться при запросе корня сайта | |
index index.php index.html |