摘要: 在Nginx中配置try_files server { listen 80; server_name localhost; root "****"; location / { try_files $uri $uri/ /index.html; index index.php index.html; 阅读全文
posted @ 2022-11-19 10:02 skywa1ker 阅读(36) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name localhost; root "E:/plan"; location / { index index.php index.html error/index.html; } location /api/{ proxy_pass http 阅读全文
posted @ 2022-11-19 09:53 skywa1ker 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 有些业务场景不适合异步获取信息,可以使用主动轮询+同步获取的方式获取OPC信息 using OPCAutomation; using System; using System.Collections.Generic; using System.Data.SqlClient; using System 阅读全文
posted @ 2022-11-19 09:49 skywa1ker 阅读(2042) 评论(0) 推荐(0) 编辑