pptfz opened a new issue #4944: URL: https://github.com/apache/incubator-dolphinscheduler/issues/4944
I've been using docker installed dolphinscheduler, access method is ` http://1.2.3.4:12345/dolphinscheduler` now I want to use nginx to configure it to directly access the domain name, but I can't configure it. Could you please help me? Thank you ``` server { listen 80; server_name ds.abc.com; return 301 https://$server_name$request_uri; } server { listen 443 ssl; server_name ds.abc.com; client_max_body_size 10240m; location / { proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Proto $scheme; proxy_pass http://127.0.0.1:12345; } access_log /var/log/ds/ds.abc.com.access.log; error_log /var/log/ds/ds.abc.com.error.log; ssl_certificate ssl_key/aldwx/1_aldwx.com_bundle.crt; ssl_certificate_key ssl_key/aldwx/2_aldwx.com.key; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; } ``` Now my nginx configuration is as follows, access is `https://ds.aldwx.com/dolphinscheduler`, I want to use direct access to the `https://ds.aldwx.com` now, can I change how to configure nginx ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
