Skip to content

Instantly share code, notes, and snippets.

View Pugemonster's full-sized avatar

Pugemonster

  • 22:26 (UTC +03:00)
View GitHub Profile
# Конфигурация для HTTP-сервера
server {
# Указываем доменное имя
server_name new-automation.ru;
# Путь к корневой директории сайта
root /var/www/opencart/public_html;
# Указываем, какие файлы должны обрабатываться при запросе корня сайта
index index.php index.html
@Pugemonster
Pugemonster / install_nano_syntax_highlighting.sh
Created July 6, 2023 12:18
Install macOS nano syntax highlighting
# 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