Odoo를 서버에 설치했는데 제대로 작동합니다. 이제 Nginx에서 SSL 프로토콜로 Odoo를 실행하는 사이트를 구성하려고합니다. 나는 다른 시간에 이것을했지만, 지금은 그것을 관리 할 수 없으며 나는 왜 그렇게하지 않습니다.
Nginx에서이 사이트를 sites-available 폴더 에 만들었습니다 (사이트 의 각 심볼 링크가 활성화되어 있는지 확인했습니다).
upstream backend-odoo {
server 127.0.0.1:30081;
}
upstream backend-odoo-im {
server 127.0.0.1:32081;
}
server {
listen 80;
add_header Strict-Transport-Security max-age=2592000;
rewrite ^/.*$ https://$host$request_uri? permanent;
}
server {
listen 443 default;
# ssl settings
ssl on;
ssl_certificate /etc/nginx/ssl/cert.pem;
ssl_certificate_key /etc/nginx/ssl/key.pem;
keepalive_timeout 60;
# proxy header and settings
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forward-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_redirect off;
# odoo log files access_log /var/log/nginx/odoo-access.log;
error_log /var/log/nginx/odoo-error.log;
# increase proxy buffer size
proxy_buffers 16 64k;
proxy_buffer_size 128k;
# force timeouts if the backend dies
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
# enable data compression
gzip on;
gzip_min_length 1100;
gzip_buffers 4 32k;
gzip_types text/plain application/x-javascript text/xml text/css;
gzip_vary on;
location / {
proxy_pass http://backend-odoo;
}
location ~* /web/static/ {
# cache static data
proxy_cache_valid 200 60m;
proxy_buffering on;
expires 864000;
proxy_pass http://backend-odoo;
}
location /longpolling {
proxy_pass http://backend-odoo-im;
}
}
다시로드하고 Nginx를 다시 시작했습니다. 또한 Odoo 구성 파일에서 다음 매개 변수를 수정했습니다.
longpolling_port = 32081
proxy_mode = True
secure_cert_file = /etc/nginx/ssl/cert.pem
secure_pkey_file = /etc/nginx/ssl/key.pem
workers = 33
xmlrpc = True
xmlrpc_interface = 127.0.0.1
xmlrpc_port = 30081
xmlrpcs = True
xmlrpcs_interface = 127.0.0.1
xmlrpcs_port = 31081
Odoo 서비스를 다시 시작했습니다. 서버에서 명령 nmap -sT -O localhost
을 실행하는 서버에서 열린 포트를 확인했습니다 . 결과:
PORT STATE SERVICE
80/tcp open http
139/tcp open netbios-ssn
443/tcp open https
445/tcp open microsoft-ds
5432/tcp open postgresql
8022/tcp open oa-system
브라우저에서 서버에 액세스하려면 URL에 local.example.com 을 입력하십시오. 그리고 영원히 로딩됩니다. https://local.example.com을 사용해 보았지만 동일한 결과가 나타납니다. 브라우저 JS 콘솔에서 리소스 : net :: ERR_CONNECTION_TIMED_OUT을로드하지 못했습니다. 라는 메시지 만 볼 수 있습니다 .
나는 무엇을 잊어 버렸는가? 아무도 도와 줄 수 없니? 나는 지금 매우 잃어버린다.
sudo openssl req -x509 -newkey rsa:2048 -keyout key.pem -out cert.pem -days 365 -nodes
. 제거해야합니까?