by @akellbl4 * create infrastructure for site * wip * fix docker build and add readme * add docker-compose as a build and a run method * rename compose file yaml -> yml * add `src` as volume for watching changes * update configs * update README * add padding at the end of the pages * move demo settings in config * fetch latest release from github * update docs navigation - add sections - redirect from root of the section to first doc - nice styles for navigation - add brand colors * cache github data from first load * add redirects and fix link to docs * fix docs nav styles * add installation page placeholder * fix demo * add 404 * add dark theme, add theme switcher, remove unused files * fix dark theme on main page * fix dark theme background * fix node version * change installation docs * add note block * minor fixes * add code highlighting styles * fixes * fixes * mobile navigation, fix code highlighting colors * fix dev server * fix fetching error * fix path to edit Co-authored-by: Pavel Mineev <pavel@mineev.me> Co-authored-by: Dmitry Verkhoturov <paskal.07@gmail.com>
55 lines
1.7 KiB
Markdown
55 lines
1.7 KiB
Markdown
---
|
|
title: Nginx
|
|
---
|
|
|
|
## How to configure remark42 with nginx reverse proxy
|
|
|
|
Example of nginx configuration (reverse proxy) running remark42 service on remark42.example.com
|
|
|
|
```nginx
|
|
server {
|
|
listen 443;
|
|
server_name remark42.example.com;
|
|
ssl on;
|
|
ssl_certificate /etc/nginx/ssl/remark42.example.com.crt;
|
|
ssl_certificate_key /etc/nginx/ssl/remark42.example.com.key;
|
|
|
|
gzip on;
|
|
gzip_types text/plain application/json text/css application/javascript application/x-javascript text/javascript text/xml application/xml application/rss+xml application/atom+xml application/rdf+xml;
|
|
gzip_min_length 1000;
|
|
gzip_proxied any;
|
|
|
|
|
|
location ~ /\.git {
|
|
deny all;
|
|
}
|
|
|
|
location /index.html {
|
|
proxy_redirect off;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_pass http://remark42:8080/web/index.html;
|
|
}
|
|
|
|
location / {
|
|
proxy_redirect off;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_pass http://remark42:8080/;
|
|
}
|
|
|
|
access_log /var/log/nginx/remark42.log;
|
|
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
server_name remark42.example.com;
|
|
return 301 https://remark42.example.com$request_uri;
|
|
}
|
|
```
|
|
|
|
note: `proxy_pass` points to internal DNS name `remark42` and expected to run from the same compose. If nginx runs outside of compose the real IP (or docker's bridge IP) should be used
|