silverwind
eb8ade10c7
Update environment variable docs, remove environment-to-ini references ( #355 )
...
The standalone `environment-to-ini` tool was removed in https://github.com/go-gitea/gitea/pull/35735 and its functionality is now built into the Gitea binary. This PR:
- Removes outdated links to the removed `contrib/environment-to-ini` directory
- Updates the "Use environment variables to setup Gitea" section in the config cheat sheet
- Adds examples showing how env vars map to `app.ini` settings and the `__FILE` suffix for secrets
*This PR was authored by Claude.*
Reviewed-on: https://gitea.com/gitea/docs/pulls/355
Reviewed-by: wxiaoguang <29147+wxiaoguang@noreply.gitea.com >
Reviewed-by: TheFox0x7 <95654+thefox0x7@noreply.gitea.com >
2026-03-17 18:19:18 +00:00
iqre8
d6bd3c6fb9
Update docs/installation/with-docker.md ( #352 )
...
Removed version, and changed the command from `docker-compose` to `docker compose` and changed the tool `docker-compose` to the docker `compose`-plugin
Reviewed-on: https://gitea.com/gitea/docs/pulls/352
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Reviewed-by: silverwind <silverwind@noreply.gitea.com >
Co-authored-by: iqre8 <iqre8@noreply.gitea.com >
Co-committed-by: iqre8 <iqre8@noreply.gitea.com >
2026-02-25 20:20:32 +00:00
TheFox0x7
c0384ba59a
update autocompletion help for v1.25 up ( #327 )
...
addresses: https://github.com/go-gitea/gitea/issues/36501
Reviewed-on: https://gitea.com/gitea/docs/pulls/327
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2026-01-30 23:32:03 +00:00
techknowlogick
6fe333ba07
remove passthrough from the docs
2026-01-15 15:32:21 +00:00
techknowlogick
9fbcdbbd60
remove passthrough from the docs
2026-01-15 15:31:47 +00:00
Lunny Xiao
dcb9b9b450
Use category instead of place holder markdown file as directory ( #299 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/299
2025-11-20 18:02:34 +00:00
DiegoBM
bd38456e4b
Fix home reference ( #281 )
...
~ points to the logged user's home, not to /home
Co-authored-by: Diego de Blas Mateo <1613216+DiegoBM@users.noreply.github.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/281
Reviewed-by: TheFox0x7 <thefox0x7@noreply.gitea.com >
Co-authored-by: DiegoBM <diegobm@noreply.gitea.com >
Co-committed-by: DiegoBM <diegobm@noreply.gitea.com >
2025-10-16 14:43:55 +00:00
Lunny Xiao
c13d82ccc3
Update gpg check command to use hkps by default ( #260 )
...
Fix #255
Reviewed-on: https://gitea.com/gitea/docs/pulls/260
2025-08-12 16:57:24 +00:00
Schallbert
5d9094adb0
Clarify customization's folder structure when using non-standard install like docker ( #219 )
...
customizing: add backlink to install for variations
install-with-docker: add example for customization
Reviewed-on: https://gitea.com/gitea/docs/pulls/219
Co-authored-by: Schallbert <schallbert@mailbox.org >
Co-committed-by: Schallbert <schallbert@mailbox.org >
2025-05-26 16:11:47 +00:00
ManInDark
bec3fc4398
SSH multiple IPs ( #194 )
...
Added documentation for alternative ssh setup if multiple IPs are available.
Co-authored-by: techknowlogick <techknowlogick@noreply.gitea.com >
Reviewed-on: https://gitea.com/gitea/docs/pulls/194
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com >
Co-authored-by: ManInDark <ManInDark@noreply.gitea.com >
Co-committed-by: ManInDark <ManInDark@noreply.gitea.com >
2025-04-01 20:31:35 +00:00
techknowlogick
52933671d8
use docker.gitea.com docker URLs ( #175 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/175
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: techknowlogick <techknowlogick@gitea.com >
Co-committed-by: techknowlogick <techknowlogick@gitea.com >
2025-02-28 15:36:37 +00:00
b-nagaj
540072fa39
FIX: DB Prep Docs - Step #1 ( #173 )
...
## Description
Fix step 1 of the [Database Preparation](https://docs.gitea.com/installation/database-prep ) docs.
## Changes
When a user modifies the */etc/mysql/my.cnf* config file as instructed in step 1 of the database preparation guide, they get an error message from MySQL when trying to log in as the root user after saving changes.
```shell
mysql: [ERROR] Found option without preceding group in config file /etc/mysql/my.cnf at line 37.
mysql: [ERROR] Fatal error in defaults handling. Program aborted!
```
The solution is to include precede `bind-address` with a group like this.
```ini
[mysqld]
bind-address = 203.0.113.3
```
Reviewed-on: https://gitea.com/gitea/docs/pulls/173
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-authored-by: b-nagaj <bryce.nagaj@proton.me >
Co-committed-by: b-nagaj <bryce.nagaj@proton.me >
2025-02-25 19:39:31 +00:00
TheFox0x7
d97b557d9f
Remove dead marketplace links ( #139 )
...
both have removed gitea from their marketplaces
Reviewed-on: https://gitea.com/gitea/docs/pulls/139
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2025-01-05 18:33:08 +00:00
TheFox0x7
7a4e79c937
use fqin for container images ( #125 )
...
It's generally considered a better practice and it's more portable allowing podman to work without having to modify the name.
Reviewed-on: https://gitea.com/gitea/docs/pulls/125
Reviewed-by: Lunny Xiao <lunny@noreply.gitea.com >
Co-authored-by: TheFox0x7 <thefox0x7@gmail.com >
Co-committed-by: TheFox0x7 <thefox0x7@gmail.com >
2024-12-17 20:23:46 +00:00
Lunny Xiao
2b9cc256ea
Remove compare with Gogs because of the Gogs development is almost stopped ( #124 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/124
Reviewed-by: Bo-Yi Wu (吳柏毅) <appleboy.tw@gmail.com >
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com >
Co-committed-by: Lunny Xiao <xiaolunwen@gmail.com >
2024-12-16 17:14:08 +00:00
Lunny Xiao
1edaf07b36
Update comparasion because of merge queue has been implemented. ( #104 )
...
Since https://github.com/go-gitea/gitea/pull/9307 and https://github.com/go-gitea/gitea/pull/19648 , merge queue has been introduced.
Reviewed-on: https://gitea.com/gitea/docs/pulls/104
2024-11-25 21:10:09 +00:00
Lunny Xiao
2f7d104417
Fix some versions
2024-08-31 23:36:04 -07:00
Lunny Xiao
1f23956442
replace all global variables with right value
2024-08-31 23:14:38 -07:00
sbourdeauducq
0e7d152165
add warning about choice of database type
2024-08-21 04:23:27 +00:00
Lunny Xiao
af22422e1a
Update meta data of docs
2024-08-06 16:44:42 -07:00
Lunny Xiao
4917bd18ae
Add a note for docker compose version ( #43 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/43
Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.com >
2024-08-03 03:08:33 +00:00
Lunny Xiao
7dc54af200
Remove unnecessary meta data on markdown files ( #12 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/12
2024-06-28 19:50:37 +00:00
Lunny Xiao
ab2cdde840
Fix more links and problems ( #3 )
...
Reviewed-on: https://gitea.com/gitea/docs/pulls/3
2024-06-14 08:53:10 +00:00
Lunny Xiao
9a8396aa29
Fix broken links ( #1 )
...
- Always use a relative markdown link so that we can jump even if we edit it in local env or read it in code hosting server.
Reviewed-on: https://gitea.com/gitea/docs/pulls/1
2024-06-14 05:53:15 +00:00
Lunny Xiao
b4dddf8804
Use docusaurus warning/note syntax instead markdown
2024-06-07 18:03:08 +08:00
Lunny Xiao
c88deee1a6
Some small improvements
2024-06-06 22:49:46 +08:00
Lunny Xiao
b9e0a85c9b
Use a formal docusaurus i18n structure
2024-06-06 20:44:06 +08:00
Lunny Xiao
5e93e1d614
Subtree merged in docs
...
Signed-off-by: Lunny Xiao <xiaolunwen@gmail.com >
2024-06-06 16:47:07 +08:00