Replies: 3 comments 3 replies
-
Causes |
Beta Was this translation helpful? Give feedback.
2 replies
-
Very helpful. Saved me a ton of time. Thank you! :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
I tried many configurations for three days, also yours, but none is working on my server. My config.yml (Wiki.js configuration) has SSL option disabled. Could you help me? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was looking how to setup wiki.js on apache for weeks and I want to share this for those that are looking for support. (This little guide is for Ubuntu)
First go to your apache folder (/etc/apache2/) and open the folder "sites-available", then create the file with your subdomain name, for example "wiki.example.com.conf".
Put this code inside the file:
`<VirtualHost *:443>
ServerName wiki.example.com
ServerAdmin [email protected]
<VirtualHost *:80>
ServerName wiki.example.com
ServerAdmin [email protected]
`
Then run this command
sudo a2ensite wiki.example.com.conf
Then restart apache
sudo systemctl restart apache2
Also you need to go to your dns settings and create an A record pointing to the server IP
Beta Was this translation helpful? Give feedback.
All reactions