We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d533368 commit c1ac6ecCopy full SHA for c1ac6ec
examples/web-server/apache/coder.conf
@@ -1,6 +1,6 @@
1
<VirtualHost *:443>
2
- ServerName YOUR_SUBDOMAIN # e.g. dev.coder.com
3
- ServerAlias *.YOUR_SUBDOMAIN # e.g. *.dev.coder.com
+ ServerName coder.example.com
+ ServerAlias *.coder.example.com
4
ErrorLog ${APACHE_LOG_DIR}/error.log
5
CustomLog ${APACHE_LOG_DIR}/access.log combined
6
@@ -14,6 +14,7 @@
14
RewriteCond %{HTTP:Upgrade} websocket [NC]
15
RewriteRule /(.*) ws://127.0.0.1:3000/$1 [P,L]
16
17
- SSLCertificateFile /etc/letsencrypt/live/dev.dietstyler.com/fullchain.pem
18
- SSLCertificateKeyFile /etc/letsencrypt/live/dev.dietstyler.com/privkey.pem
+ SSLCertificateFile /etc/letsencrypt/live/coder.example.com/fullchain.pem
+ SSLCertificateKeyFile /etc/letsencrypt/live/coder.example.com/privkey.pem
19
</VirtualHost>
20
+
0 commit comments