CentOS 에서 Asp. Net Core 사 이 트 를 자동 으로 실행 합 니 다.

1114 단어 ASP.NETNginxLinux
1. Nginx 설치
yum install nginx
설정
vi /etc/nginx/nginx.conf
location / {
            proxy_pass http://127.0.0.1:5000;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection keep-alive;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_cache_bypass $http_upgrade;
        }

3. Nginx 부팅 설정
systemctl enable nginx.service
4. 데 몬 설치 도구
yum install supervisor
5. 데 몬 설정 정보
cd /etc/supervisord.d
vi videoserver.ini
[program:VideoServer.Site]
command=dotnet VideoCheckServer.dll
directory=/usr/bin/videoserver
environment=ASPNETCORE__ENVIRONMENT=Production
user=root
stopsignal=INT
autostart=true
autorestart=true
startsecs=3
stderr_logfile=/var/log/videoserver.err.log    
stdout_logfile=/var/log/videoserver.out.log

supervisord -c /etc/supervisord.conf
6. 부팅 데 몬 설정
systemctl enable supervisord.service

좋은 웹페이지 즐겨찾기