mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 19:56:39 +00:00
[documentation] add ipv6 config for nginx (#367)
This commit is contained in:
parent
14c472c1ab
commit
ec4357485e
|
@ -59,6 +59,7 @@ The file you're about to create should look a bit like this:
|
||||||
```nginx.conf
|
```nginx.conf
|
||||||
server {
|
server {
|
||||||
listen 80;
|
listen 80;
|
||||||
|
listen [::]:80;
|
||||||
server_name example.com;
|
server_name example.com;
|
||||||
location / {
|
location / {
|
||||||
proxy_pass http://localhost:8080;
|
proxy_pass http://localhost:8080;
|
||||||
|
@ -67,6 +68,8 @@ server {
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Note: You can remove the line `listen [::]:80;` if your server is not ipv6 capable or you'd rather not use ipv6.
|
||||||
|
|
||||||
Change `proxy_pass` to the ip and port that you're actually serving GoToSocial on and change `server_name` to your own domain name.
|
Change `proxy_pass` to the ip and port that you're actually serving GoToSocial on and change `server_name` to your own domain name.
|
||||||
If your domain name is `gotosocial.example.com` then `server_name gotosocial.example.com;` would be the correct value.
|
If your domain name is `gotosocial.example.com` then `server_name gotosocial.example.com;` would be the correct value.
|
||||||
If you're running GoToSocial on another machine with the local ip of 192.168.178.69 and on port 8080 then `proxy_pass http://192.168.178.69:8080;` would be the correct value.
|
If you're running GoToSocial on another machine with the local ip of 192.168.178.69 and on port 8080 then `proxy_pass http://192.168.178.69:8080;` would be the correct value.
|
||||||
|
@ -86,7 +89,7 @@ sudo nginx -t
|
||||||
|
|
||||||
If everything is fine you should get this as output:
|
If everything is fine you should get this as output:
|
||||||
|
|
||||||
```
|
```text
|
||||||
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
|
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
|
||||||
nginx: configuration file /etc/nginx/nginx.conf test is successful
|
nginx: configuration file /etc/nginx/nginx.conf test is successful
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue