Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

94 total results found

Drupal

網站架設

WooCommerce

WordPress

設定金流
設定物流

BookStack的Nginx設定檔

BookStack

server { server_name docs.site.com; root /var/www/docs/BookStack/public; index index.php index.html; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { include snippets/fastcgi-php.conf; fas...

WordPress

關於本站

模組

Drupal

Drupal 最新版本

設定主機

Ubuntu Linux

切換成root角色 sudo su 有些vps預設會直接用root,就不用切換。我是習慣全用root去執行操作,主機只有自己會管理,有時遇到權限的問題真的蠻雷的 XD 修改時區 dpkg-reconfigure tzdata 修改語系 vi /etc/locale.gen 把 zh_TW.UTF-8 mark打開 locale-gen 更新程式並且重啟主機 apt update apt dist-upgrade reboot 重啟用,登入後再切到 root 角色 sudo su 安裝伺...

BookStack

Drupal7零散的筆記

Drupal

使用wp-cli安裝WordPress

WordPress

安裝wp-cli curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar chmod +x wp-cli.phar sudo mv wp-cli.phar /usr/local/bin/wp wp-cli安裝參考:https://wp-cli.org/#installing 新增目錄並使用wp-cli下載最新版本的WordPress主程式 cd /var/www/ mkdir site cd ...

Ubuntu Linux

Drupal零散筆記

Drupal

WordPress Nginx 設定檔

WordPress

server {         ## Your website name goes here.         server_name site.com;         ## Your only path reference.         root /var/www/site;         ## This should be in your http block and if it is, it's not needed here.         index index.php;    ...

Nextcloud

安裝WordPress後的基本設定

WordPress

WordPress裝好後務必立即啟用防火牆相關的外掛,並更換wp-admin預設路徑 防火牆及安全相關外掛我目前使用:All In One WP Security、Falcon 接著就是一些基本設定,我是習慣再做這些設定01.永久連結設定選擇文章名稱02.媒體設定為上傳的檔案建立以年份及月份命名的資料夾勾選取消 其他我會預設安裝外掛安全相關:All In One WP Security、Falcon效能相關:APCu Manager、DecaLog、Cache EnablerSEO相關:Slim SEO、Su...

GitHub

Nextcloud的Nginx設定檔

Nextcloud

map $arg_v $asset_immutable { "" ""; default ", immutable"; } server { listen 80; listen [::]:80; server_name cloud.site.com; # Prevent nginx HTTP Server Detection server_tokens off; # Enforce HTTPS return 3...