Skip to content

Commit

Permalink
Create memo.md
Browse files Browse the repository at this point in the history
init
activate SSI
  • Loading branch information
sakasa authored Mar 27, 2020
1 parent f2d866a commit 0c54791
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions NGINX/memo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
## SSIの有効化
`/etc/nginx/conf.d/default.conf`
```default.conf
server {
listen 80;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
# 以下を追記する
ssi on;
ssi_last_modified on;
}
```

0 comments on commit 0c54791

Please sign in to comment.