forked from team/site
1
0
Fork 0

fix layout

This commit is contained in:
SmokeyDope 2023-03-14 05:15:05 +00:00 committed by Gitea
parent efafdde99c
commit a61cbf86c3
1 changed files with 5 additions and 1 deletions

View File

@ -84,7 +84,11 @@ remember, anything that can read environment variables and write to stdout can
be used to make CGI, as long as the server can figure out how to execute it.
##how to set a CGI script as executable
The CGI script must be marked as executable in order to actually run. To do this, run the command
The CGI script must be marked as executable in order to actually run.
To make the script executable, run this command:
```
chmod +x SCRIPT_NAME.cgi
```