Tag: ssl_certificate_key
-
Post Views: 17 1. Nginx:[emerg]unknown directive “SSL” in C:\nginx-1.26.3/conf/nginx.conf:44. as shown in Figure 1 2. Check whether nginx supports ssl, run the following command to check whether nginx contains ssl module: 3. Find –with-http_ssl_module in the output. It can be found, indicating that Nginx has enabled SSL support. as shown in Figure 2 4. After re-editing the nginx configuration file,…
-
Post Views: 60 1. Now the local environment URL: http://morefun.dev.dev.xxx.cn/ I want to get the cookie data under the development environment: https://.xxx.cn, but found that it cannot be obtained. The reason is the difference between HTTP and HTTPS. 2. Configure the URL in the local environment: https://morefun.dev.xxx.cn/ . 3. Reference URL: https://web.dev/how-to-use-local-https/ . How to use HTTPS for local development.…