Compare commits

..

2 Commits

Author SHA1 Message Date
3d82d7728b Merge branch 'master' of https://git.charlesreid1.com/docker/d-nginx-subdomains
* 'master' of https://git.charlesreid1.com/docker/d-nginx-subdomains:
  add license to footer, add links to readme, trim redundancy
  fix bullet item list typo
  update mkdocs
  propagate change to index
  fix last command
  update gitignore and add css
  init commit of docs
2018-07-19 11:47:20 -07:00
5a7bf7faa7 update which files the nginx config file is trying 2018-07-19 11:46:43 -07:00

View File

@@ -22,10 +22,11 @@ server {
server_name pages.charlesreid1.com;
include /etc/nginx/conf.d/client-allow.conf;
deny all;
port_in_redirect off;
location / {
try_files $uri $uri/ =404;
root /www/pages.charlesreid1.com/htdocs;
index index.html;
try_files $uri $uri/ $uri/index.html =404;
root /www/pages.charlesreid1.com/htdocs;
}
}
@@ -35,9 +36,9 @@ server {
include /etc/nginx/conf.d/client-allow.conf;
deny all;
location / {
index index.html;
try_files $uri $uri/ =404;
root /www/hooks.charlesreid1.com/htdocs;
index index.html;
}
}