New issue Jump to bottom [BE] 스웨거 및 nginx 설정 수정 #203 Merged sjy2335 merged 3 commits into dev-back from be-feat#194 Nov 28, 2024 Merged [BE] 스웨거 및 nginx 설정 수정 #203 sjy2335 merged 3 commits into dev-back from be-feat#194 Nov...
6 changes: 6 additions & 0 deletions 6 config/nginx/default.conf.template Show comments View file Edit file Delete file Original file line numberDiff line numberDiff line change @@ -11,4 +11,10 @@ server { include /etc/nginx/uwsgi_params; uwsgi_pass uwsgi_app; } location /static/ ...
Step 1 – Installing Nginx Since Nginx is available in Ubuntu’s default repositories, it is possible to install it from these repositories using theaptpackaging system. Since this may be your first interaction with theaptpackaging system in this session, update the local package index so that y...
proxy_pass http://43.202.25.104:5000; proxy_http_version 1.1; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } error_page 500 502 503 504 /50x.html; location = 50x.html { root /usr/share/nginx/html; } } 23 changes: 23 additions & 0 deletions 23 nginx/...
안녕하세요! P.377의 내용을 실습 도중 문제가 생겨 질문드립니다! 책의 그림 10-9와 동일하게 작업하였으나 해당 변수를 찾을수 없다고 출력됩니다. incl
일정 수준 이상의 규모를 가진 웹 사이트에서는 웹 서버(Nginx)와 웹 어플리케이션 서버 (Tomcat)를 분리하여 웹 서버를 리버스 프록시 서버(Reverse Proxy Server)로 사용합니다. 예를 들어 zum...