摘要:server { listen 80 default_server; #listen [::]:80 default_server ipv6only=on; server_name www.a.com a.com; index index.html index.htm index.php; root
阅读全文
posted @ 2022-03-30 18:40
|
|||
03 2022 档案
摘要:server { listen 80 default_server; #listen [::]:80 default_server ipv6only=on; server_name www.a.com a.com; index index.html index.htm index.php; root
阅读全文
posted @ 2022-03-30 18:40
摘要:利用vue-meta管理头部标签 在 Vue SPA 应用中,如果想要修改HTML的头部标签,或许,你会在代码里,直接这么做 // 改下title document.title = 'what?' // 引入一段script let s = document.createElement('scrip
阅读全文
posted @ 2022-03-12 14:54
摘要:docker启动时出现open() “/usr/local/openresty/nginx/conf/nginx.conf“ failed (13: Permission denied) 牧夫 于 2020-07-03 16:19:46 发布 2279 收藏文章标签: linux docker版权运
阅读全文
posted @ 2022-03-07 15:16
摘要:事件系统 事件系统介绍 Laravel 为事件提供了一个简单的观察者实现,允许你在应用中订阅和监听各种发生的事件。 在 Laravel 中事件类通常放在 app/Events 目录下,这些事件类的监听器则放在 app/Listeners 目录下。而在 Ecshopx 中事件和监听器则放在 Bundl
阅读全文
posted @ 2022-03-02 15:43
|
|||