Skip to content

Instantly share code, notes, and snippets.

@julienbourdeau
Last active September 16, 2018 07:05
Show Gist options
  • Save julienbourdeau/734f1ff3577694454d5e33d48f700435 to your computer and use it in GitHub Desktop.
Save julienbourdeau/734f1ff3577694454d5e33d48f700435 to your computer and use it in GitHub Desktop.
# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/forum.allraces.org/before/*;

server {
    listen 443 ssl http2;
    listen [::]:443 ssl http2;
    server_name forum.allraces.org;
    root /home/forge/forum.allraces.org/; # /!\ UPDATE WITH YOUR DOMAIN

    # FORGE SSL (DO NOT REMOVE!)
    ssl_certificate /etc/nginx/ssl/forum.allraces.org/412071/server.crt;
    ssl_certificate_key /etc/nginx/ssl/forum.allraces.org/412071/server.key;

    ssl_protocols TLSv1.2;
    ssl_ciphers ECDHE-RSA-AES256-GCM-SHA512:DHE-RSA-AES256-GCM-SHA512:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384;
    ssl_prefer_server_ciphers on;
    ssl_dhparam /etc/nginx/dhparams.pem;

    add_header X-Frame-Options "SAMEORIGIN";
    add_header X-XSS-Protection "1; mode=block";
    add_header X-Content-Type-Options "nosniff";

-    index index.html index.htm index.php;

    charset utf-8;

    # FORGE CONFIG (DO NOT REMOVE!)
    include forge-conf/forum.allraces.org/server/*;

-    location / {
-        try_files $uri $uri/ /index.php?$query_string;
-    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/forum.allraces.org-error.log error;

-    error_page 404 /index.php;

-    location ~ \.php$ {
-        fastcgi_split_path_info ^(.+\.php)(/.+)$;
-        fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
-        fastcgi_index index.php;
-        include fastcgi_params;
-    }
+    location / {
+        proxy_pass http://unix:/var/discourse/shared/standalone/nginx.http.sock:;
+        proxy_set_header Host $http_host;
+        proxy_http_version 1.1;
+        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+        proxy_set_header X-Forwarded-Proto https;
+        proxy_set_header X-Real-IP $remote_addr;
+     }

    location ~ /\.(?!well-known).* {
        deny all;
    }
}

# FORGE CONFIG (DO NOT REMOVE!)
include forge-conf/forum.allraces.org/after/*;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment