Skip to content

Commit

Permalink
chore(lint): use markdown for code sections
Browse files Browse the repository at this point in the history
  • Loading branch information
as-op committed Jan 22, 2024
1 parent 419bff0 commit ed36a18
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ Apache provides the module `mod_dav_svn` to serve Subversion repositories throug

This method requires some apache modules to be enabled and installed. The following commands are required for Debian / Ubuntu, please adjust accordingly for other distributions:

<pre>
```shell
apt-get install subversion libapache2-mod-perl2 libapache2-svn
a2enmod proxy proxy_http dav dav_svn
</pre>
```

### Permissions

Expand Down Expand Up @@ -274,10 +274,10 @@ We can exploit git-http-backend to serve Git repositories through HTTP(s) with A

This method additionally requires the `cgi` Apache module to be installed. The following commands are required for Debian / Ubuntu, please adjust accordingly for other distributions:

<pre>
```shell
apt-get install git libapache2-mod-perl2
a2enmod proxy proxy_http cgi
</pre>
```

You need to locate the location of the `git-http-backend` CGI wrapper shipping with the Git installation.
Depending on your installation, it may reside in `/usr/libexec/git-core/git-http-backend`.
Expand Down
13 changes: 5 additions & 8 deletions docs/installation-and-operations/installation/manual/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,11 +414,9 @@ We encourage you to extend OpenProject yourself by writing a plug-in. Please, re

## Troubleshooting

You can find the error logs for apache here:
<pre>/var/log/apache2/error.log</pre>
You can find the error logs for apache here: `/var/log/apache2/error.log`

The OpenProject logfile can be found here:
<pre>/home/openproject/openproject/log/production.log</pre>
The OpenProject logfile can be found here: `/home/openproject/openproject/log/production.log`

If an error occurs, it should be logged there.

Expand All @@ -441,10 +439,9 @@ If you need to restart the server (for example after a configuration change), do

* **When accessing OpenProject, I get an error page. How do I find out what went wrong?**

Things can go wrong on different levels. You can find the apache error logs here:
<pre>/var/log/apache2/error.log</pre>
The OpenProject log can be found here:
<pre>/home/openproject/openproject/log/production.log</pre>
Things can go wrong on different levels. You can find the apache error logs here: `/var/log/apache2/error.log`

The OpenProject log can be found here: `/home/openproject/openproject/log/production.log`

* **I cannot solve an error, not even with the log files. How do I get help?**

Expand Down

0 comments on commit ed36a18

Please sign in to comment.