전체 글14 uwsgi 자동 시작 설정 [우분투] 서버 리부팅 시의 자동 시작 설정 방법입니다. sudo vim /etc/systemd/system/uwsgi.service[Unit]Description=uWSGI Emperor ServiceAfter=network.target[Service]ExecStart=/home/ubuntu/venv/bin/uwsgi --ini /etc/uwsgi/sites/djangoProject.ini [여기만 바꿔주세요]RuntimeDirectory=uwsgiRestart=alwaysKillSignal=SIGQUITType=notifyNotifyAccess=all[Install]WantedBy=multi-user.targetsudo systemctl daemon-reloadsudo systemctl enable uwsgi... 2024. 12. 26. 구글 네이버 sso 로그인 django 설정 정보 settings.pyINSTALLED_APPS = [ # sso 'allauth', 'allauth.account', 'allauth.socialaccount', 'allauth.socialaccount.providers.google', 'allauth.socialaccount.providers.naver',] MIDDLEWARE = [ 'allauth.account.middleware.AccountMiddleware', # sso 미들웨어 추가] AUTHENTICATION_BACKENDS = [ # sso 'allauth.account.auth_backends.AuthenticationBackend',]# ssoACCOUNT_ADAPTER = 'acco.. 2024. 11. 20. 기본 django 세팅 settings.py# Static files (CSS, JavaScript, Images)STATIC_URL = '/static/'# Optional: 추가적인 정적 파일 경로를 지정하고 싶을 때STATICFILES_DIRS = [ os.path.join(BASE_DIR, 'common_static'), # 프로젝트 루트에 있는 공통 정적 파일 디렉토리]# collectstatic 명령어로 모아질 파일들이 저장될 위치STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles') 기본 애플리케이션 urls.pyurlpatterns = [ path('', include('앱이름.urls')),] 추가 애플리케이션 urlpatterns = [ path('앱이름.. 2024. 8. 27. oom(out of memory) 방지 스왑 메모리 설정 sudo fallocate -l 1G /swapfile # 1GB 스왑 파일 생성 sudo chmod 600 /swapfile # 스왑 파일의 권한 설정 (보안을 위해) sudo mkswap /swapfile # 스왑 파일 포맷 sudo swapon /swapfile # 스왑 활성화 echo '/swapfile swap swap defaults 0 0' | sudo tee -a /etc/fstab #재부팅시 스왑메모리 설정 유지 2024. 8. 26. uWSGI 관련 uWSGI는 장고와 웹서버를 연결해주는 웹서버인터페이스이다. uwsgi --stop /tmp/django.pid-> uwsgi 중단uwsgi --ini /etc/uwsgi/sites/djangoProject.ini --py-autoreload 1-> django 변경사항이 있다면 자동으로 재시작 tail -f /tmp/uwsgi.log -> 실시간 로그 확인 2024. 8. 23. 깃허브 관련 git remote add origin 주소-> 레포 최초 등록git remote set-url origin 주소-> 레포 변경 [소스 최신으로 받아오고싶을때]git fetch origin-> 원격 저장소 최신 상태로 가져옴git reset --hard origin/main-> 동기화 git push -u origin main-> commit 한거 올림 git reset --soft HEAD~1 -> 로컬에서 commit 한거 제거, 변경사항 및 스테이징은 유지 2024. 8. 23. 이전 1 2 3 다음