Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View koddr's full-sized avatar
🏔️
Working from the high mountains

Vic Shóstak koddr

🏔️
Working from the high mountains
View GitHub Profile
@koddr
koddr / auth.py
Last active November 22, 2021 18:27 — forked from dvingerh/auth.py
Hook for Python Instagram private API for avoid re-login
import json
import codecs
import os.path
try:
from instagram_private_api import (
Client, ClientError, ClientLoginError,
ClientCookieExpiredError, ClientLoginRequiredError,
__version__ as client_version)
except ImportError:
import sys
@koddr
koddr / .babelrc
Last active March 5, 2022 18:18
Webpack 3 config for simple Django/Flask project with Autoprefixer, PostCSS, SCSS style files, Vue.js and Babel
{
"presets": ["@babel/preset-env"]
}
@koddr
koddr / tests.py
Last active January 18, 2018 18:14
# Import Python packages
from datetime import datetime
# Import Django Test
from django.test import TestCase
# Import App models
from .models import Journal, Children
class JournalTestCase(TestCase):
def setUp(self):
@koddr
koddr / admin.py
Created March 7, 2018 19:18 — forked from cansadadeserfeliz/admin.py
Django: how to remove delete action/button from admin
class MyAdmin(admin.ModelAdmin):
def has_delete_permission(self, request, obj=None):
return False
def get_actions(self, request):
actions = super(MyAdmin, self).get_actions(request)
if 'delete_selected' in actions:
del actions['delete_selected']
return actions
@koddr
koddr / VK_API_wall_post_example.py
Last active October 30, 2018 13:22
VK API wall.post example (Django 1.11.x, RQ)
# Import Python packages
import requests
# Import VK API
import vk
# Import Django packages
from django.contrib.sites.models import Site
from django.contrib.humanize.templatetags import humanize
# Import Django Global settings
from django.conf import settings
# Import App models
@koddr
koddr / Flake8.txt
Created March 24, 2019 08:32 — forked from tossmilestone/Flake8.txt
Flake8 integrated with PyCharm
How to manually setup flake8 as PyCharm external tool
File / Settings / Tools / External Tools / Add
Name: Flake8
Program: $PyInterpreterDirectory$/python
Parameters: -m flake8 --max-complexity 10 --ignore E501 $FilePath$
Working directory: $ProjectFileDir$
Output Filters / Add
Name: Filter 1
@koddr
koddr / get_keys_in_first_level.py
Created April 2, 2019 08:35
Python: JSON only get keys in first level
import json
string_arr = '''
{
"user": {
"code": 0,
"data": [
{
"1": {
"row": {
# Golang
export GOPATH="$HOME/.go"
export PATH="$PATH:$GOPATH/bin"
@koddr
koddr / benchmark+go+nginx.md
Created November 26, 2019 09:15 — forked from hgfischer/benchmark+go+nginx.md
Benchmarking Nginx with Go

Benchmarking Nginx with Go

There are a lot of ways to serve a Go HTTP application. The best choices depend on each use case. Currently nginx looks to be the standard web server for every new project even though there are other great web servers as well. However, how much is the overhead of serving a Go application behind an nginx server? Do we need some nginx features (vhosts, load balancing, cache, etc) or can you serve directly from Go? If you need nginx, what is the fastest connection mechanism? This are the kind of questions I'm intended to answer here. The purpose of this benchmark is not to tell that Go is faster or slower than nginx. That would be stupid.

So, these are the different settings we are going to compare:

  • Go HTTP standalone (as the control group)
  • Nginx proxy to Go HTTP
  • Nginx fastcgi to Go TCP FastCGI
  • Nginx fastcgi to Go Unix Socket FastCGI

Certbot и nginx, как обратный прокси в Docker (пример с 2 react проектами)

В результате будет 2 react проекта на 1 сервере доступных по разным ссылкам

Цели

  • Запустить nginx в одном контейнере
  • Запустить другие проекты в других контейнерах
  • Научить nginx перенаправлять запросы с разных доменов на разные проекты
  • Получить ssl сертификаты для всех проектов