mirror of
https://github.com/encounter/decomp.me.git
synced 2026-03-30 11:06:27 -07:00
2e96373ac7
* add projects list * new project page * mypy * allow '.' in github identifiers * implement project create * project settings * disallow anons from being project members * uploadable project icon * docker attempt * fix tests * add tests * add description form * refactor to add useEntity and FieldSet * move FieldSet out of subdirectory * use same page for project tabs * scroll up to UnderlineNav when tab changes * stylelint * configure vscode mypy extension * mypy * fix mypy and dmypy dmypy does not support follow_imports=silent. Instead we explicitly disable most checks for asm_differ and m2c, which has the same effect * remove redundant mypy flags * FieldSet style tweaks * give UnderlineNav horiz padding * fix swr mutate of project header * few tweaks to help docker (#550) * eth changes * use POST/DELETE rather than PUT for project members * add migration * fix pr creation * simplify project platform derivation Co-authored-by: Mark Street <22226349+mkst@users.noreply.github.com> Co-authored-by: Ethan Roseman <ethteck@gmail.com>
80 lines
2.1 KiB
Markdown
80 lines
2.1 KiB
Markdown
### Running inside an nginx proxy
|
|
|
|
Running decomp.me using nginx as a proxy better emulates the production environment and can avoid cookie-related issues.
|
|
|
|
- Install nginx
|
|
|
|
- Create an nginx site configuration (typically `/etc/nginx/sites-available/decomp.local`)
|
|
```nginx
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
client_max_body_size 5M;
|
|
|
|
server_name decomp.local www.decomp.local;
|
|
|
|
location / {
|
|
try_files $uri @proxy_frontend;
|
|
}
|
|
|
|
location /api {
|
|
try_files $uri @proxy_api;
|
|
}
|
|
location /admin {
|
|
try_files $uri @proxy_api;
|
|
}
|
|
location /static {
|
|
try_files $uri @proxy_api;
|
|
}
|
|
location /media {
|
|
root /path/to/decomp.me/backend;
|
|
}
|
|
|
|
location @proxy_api {
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
proxy_set_header X-Url-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://127.0.0.1:8000;
|
|
}
|
|
|
|
location @proxy_frontend {
|
|
proxy_set_header X-Forwarded-Proto https;
|
|
proxy_set_header X-Url-Scheme $scheme;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_redirect off;
|
|
proxy_pass http://127.0.0.1:8080;
|
|
}
|
|
|
|
location /_next/webpack-hmr {
|
|
proxy_pass http://127.0.0.1:8080/_next/webpack-hmr;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header Connection "upgrade";
|
|
}
|
|
}
|
|
```
|
|
|
|
- Enable the site
|
|
```shell
|
|
ln -s /etc/nginx/sites-available/decomp.local /etc/nginx/sites-enabled/decomp.local
|
|
```
|
|
|
|
- Add the following lines to `/etc/hosts`:
|
|
```
|
|
127.0.0.1 decomp.local
|
|
127.0.0.1 www.decomp.local
|
|
```
|
|
|
|
- Edit `.env.local`:
|
|
- Set `API_BASE=/api`
|
|
- Set `ALLOWED_HOSTS=decomp.local`
|
|
|
|
- If you set up GitHub authentication, change the application URLs to `http://decomp.local` and `http://decomp.local/login`
|
|
|
|
- Restart nginx, the frontend, and the backend
|
|
|
|
- Access the site via [http://decomp.local](http://decomp.local)
|