Nginx配置+转发8080端口+页面静态缓存+https配置

+++
js刷新页面:
https://www.jb51.net/article/14397.htm

https证书:
https://wzfou.com/letsencrypt/

Linux Nginx操作网站链接:
https://www.cnblogs.com/pzk7788/p/10341113.html
https://www.cnblogs.com/ly912790844/p/10399679.html
http://www.pythoner.com/197.html
https://www.cnblogs.com/two-bees/p/10819876.html
原文链接:https://zhang.ge/5040.html

nginx proxy_pass 后出现部分请求 404 的解决办法

https://www.jianshu.com/p/55bfbba45fed

#Nginx配置+转发8080端口+页面静态缓存


user  apache;
worker_processes  1;
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}
http {
    include       mime.types;
    default_ty

你可能感兴趣的:(PHP,环境,LNMP,lnmp)