!tWhFrRUvXchTuOHjxO:matrix.org

Write.as

104 Members
Type words, put them on the internet. | https://write.as36 Servers

Load older messages


SenderMessageTime
6 Jul 2023
@pabloscloud:matrix.org@pabloscloud:matrix.org left the room.16:42:48
13 Jul 2023
@hawken.rives.techcyte:matrix.orgHawken Rives joined the room.23:51:54
1 Aug 2023
@dannekrose:matrix.orgdannekrose joined the room.19:42:23
15 Aug 2023
@jsalvia:matrix.orgjordi joined the room.07:41:51
9 Sep 2023
@damon/:matrix.org@damon/:matrix.org joined the room.20:39:37
10 Sep 2023
@damon/:matrix.org@damon/:matrix.org joined the room.14:11:59
1 Oct 2023
@damon_:matrix.orgdamon_ joined the room.18:39:17
28 Oct 2023
@kepic:matrix.orgkepic joined the room.17:12:15
29 Oct 2023
@zxgu:matrix.orgZXGU joined the room.06:59:54
8 Nov 2023
@raybanpixie:matrix.org@raybanpixie:matrix.org joined the room.07:16:58
22 Nov 2023
@triptych:triptych.ems.hostAndrew Wooldridge joined the room.18:12:17
23 Nov 2023
@youronlyone:matrix.orgYourOnlyOne changed their profile picture.03:32:01
24 Nov 2023
@bbchapman:matrix.org@bbchapman:matrix.org changed their display name from bbchapman to beechapman.16:36:27
@bbchapman:matrix.org@bbchapman:matrix.org changed their profile picture.16:37:41
1 Dec 2023
@raybanpixie:matrix.org@raybanpixie:matrix.org changed their display name from Philos-o-Ray (she/her) to Yuletide LuchadoRay (she/her).00:55:34
@raybanpixie:matrix.org@raybanpixie:matrix.org changed their profile picture.00:56:03
@raybanpixie:matrix.org@raybanpixie:matrix.org left the room.21:44:49
4 Dec 2023
@mltemlte:matrix.org@mltemlte:matrix.org joined the room.11:56:18
@mltemlte:matrix.org@mltemlte:matrix.orgHi. I'm not sure this is the right place to ask questions about running WriteFreely on your own instance. Tell me if you know a better place. My question is: Is it possible to run your own instance of WriteFreely and allow users to use a custom domain? If so, where can I find the right documentation?11:57:27
@teemuki:matrix.fediversumi.fiteemuki joined the room.12:09:48
@tim:knthost.comTim joined the room.15:02:37
@tim:knthost.comTim 15:03:08
@dannekrose:matrix.orgdannekrose
In reply to@mltemlte:matrix.org
Hi. I'm not sure this is the right place to ask questions about running WriteFreely on your own instance. Tell me if you know a better place. My question is: Is it possible to run your own instance of WriteFreely and allow users to use a custom domain? If so, where can I find the right documentation?
Hi. When you say custom domain, are you saying something like:

johnsmith.writeDomain.social
janesmith.writeDomain.social
joesmith.writeDomain.social
maryjane.writeDomain.social?
17:55:43
@dannekrose:matrix.orgdannekrose If so, I don't think you can do that within Write Freely, but you can certainly do that by leveraging Nginx rewrite rules/proxy configuration to send requests from johnsmith.writeDomain.social to writeDomain.social/johnsmith 17:57:02
@mltemlte:matrix.org@mltemlte:matrix.org
In reply to @dannekrose:matrix.org
Hi. When you say custom domain, are you saying something like:

johnsmith.writeDomain.social
janesmith.writeDomain.social
joesmith.writeDomain.social
maryjane.writeDomain.social?

I mean something like:
myowndomain.net

But hosted on:
writeDomain.social/myuser

It seems that write.as allows users to use their own domains.

18:03:09
@dannekrose:matrix.orgdannekroseThis answer, for example, will do the subdomain to path portion. https://stackoverflow.com/questions/14491944/nginx-convert-subdomain-to-path-component-without-redirect18:07:27
@dannekrose:matrix.orgdannekrose
In reply to@mltemlte:matrix.org

I mean something like:
myowndomain.net

But hosted on:
writeDomain.social/myuser

It seems that write.as allows users to use their own domains.

That's something nginx configuration can do for you.
18:08:06
@dannekrose:matrix.orgdannekroseYou can use the same steps in the answer18:12:30
@dannekrose:matrix.orgdannekrose
In reply to@mltemlte:matrix.org

I mean something like:
myowndomain.net

But hosted on:
writeDomain.social/myuser

It seems that write.as allows users to use their own domains.

# abc.example.com
server {
  listen 80;
  server_name abc.example.com;
  location / {
    proxy_pass http://127.0.0.1/abc$request_uri;
    proxy_set_header Host example.com;
  }
}
18:28:51
@dannekrose:matrix.orgdannekrose `

myowndomain.net

server {
listen 80;
server_name myowndomain.net;
location / {
proxypass http://127.0.0.1/myuser$requesturi;
# proxypass http://writeDomain.social/myuser$requesturi;
proxysetheader Host example.com;
}
}
18:32:30

Show newer messages


Back to Room ListRoom Version: