forked from littlebizzy/slickstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathss-perms.txt
321 lines (240 loc) · 14.5 KB
/
ss-perms.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
#!/bin/bash
####################################################################################################
#### author: SlickStack ############################################################################
#### link: https://slickstack.io ###################################################################
#### mirror: https://mirrors.slickstack.io/bash/ss-perms.txt #######################################
#### path: /var/www/ss-perms #######################################################################
#### destination: n/a (not a boilerplate) ##########################################################
#### purpose: Resets all file and user permissions across the entire SlickStack server #############
#### module version: Ubuntu 22.04 LTS ##############################################################
#### sourced by: ss-install, ss-update-modules #####################################################
#### bash aliases: ss perms, ss reset perms ########################################################
####################################################################################################
## source ss-config ##
source /var/www/ss-config
## source ss-functions ##
source /var/www/ss-functions
## BELOW THIS RELIES ON SS-CONFIG AND SS-FUNCTIONS
####################################################################################################
#### TABLE OF CONTENTS (SS-Perms) ##################################################################
####################################################################################################
## this is a brief summary of the different code snippets you will find in this script ##
## each section should be commented so you understand what is being accomplished ##
## A. Touch Timestamp File
## B. Message (Begin Script)
####################################################################################################
#### A. SS-Perms: Touch Timestamp File #############################################################
####################################################################################################
## this is a dummy timestamp file that will remember the last time this script was run ##
## it can be useful for developer reference and is sometimes used by SlickStack ##
## script timestamp ##
ss_touch "${TIMESTAMP_SS_PERMS}"
####################################################################################################
#### B. SS-Perms: Message (Begin Script) ###########################################################
####################################################################################################
## this is a simple message that announces to the shell the purpose of this bash script ##
## it will only be noticed by sudo users who manually call ss core bash scripts ##
## echo message ##
ss_echo "${COLOR_INFO}Running ss-perms... ${COLOR_RESET}"
####################################################################################################
#### SS-Perms: Reset Permissions (SlickStack) ######################################################
####################################################################################################
## SNIPPET: ss-check, ss-perms, ss-worker
## because SlickStack core permissions are critical this is hardcoded in multiple scripts ##
## this ensures that permissions are reset regularly and do not rely on sourcing ##
## make directories ##
mkdir /var/www
mkdir /var/www/cache
mkdir /var/www/cache/nginx
mkdir /var/www/cache/opcache
mkdir /var/www/cache/system
mkdir /var/www/certs
mkdir /var/www/certs/keys
mkdir /var/www/crons
mkdir /var/www/html
mkdir /var/www/html/.well-known
mkdir /var/www/html/.well-known/acme-challenge
mkdir /var/www/logs
mkdir /var/www/meta
mkdir /var/www/sites
## reset permissions ##
chown root:root /var ## must be root:root
chown root:root /var/www ## must be root:root
chown www-data:www-data /var/www/cache ## must be www-data:www-data
chown www-data:www-data /var/www/cache/opcache ## must be www-data:www-data
chown root:root /var/www/certs
chown root:root /var/www/certs/keys
chown root:root /var/www/crons ## must be root:root
chown -R $SFTP_USER:www-data /var/www/html/.well-known
chown www-data:www-data /var/www/logs ## must be www-data:www-data
chown www-data:www-data /var/www/meta ## must be www-data:www-data
chmod 0755 /var/www ## must be 0755
chmod 0775 /var/www/cache ## 6755 should also work
chmod 0755 /var/www/cache/opcache ## 755 should also work
chmod 0755 /var/www/certs ## must be 0755
chmod 0700 /var/www/certs/keys ## must be 0700
chmod 0644 /var/www/certs/*.crt ## must be 0644
chmod 0644 /var/www/certs/*.pem ## must be 0644
chmod 0600 /var/www/certs/keys/*.key ## must be 0600
chmod 0600 /var/www/certs/keys/*.pem ## must be 0600
chmod 0755 /var/www/crons ## must be 0755
chmod 0755 /var/www/html/.well-known ## accessed by server for e.g. Cerbot but also by SFTP user for things like Stripe ##
chmod 0775 /var/www/logs ## 6755 should also work
chmod 0775 /var/www/meta ## 6755 should also work
####################################################################################################
#### SS-Perms: Reset Permissions (Ubuntu) ##########################################################
####################################################################################################
## here we ensure permissions are safe for general system (Linux) files and otherwise ##
## since this is a single-user stack we can lock these down without issues ##
## run ss-perms-ubuntu-bash ##
source "$PATH_SS_PERMS_UBUNTU_BASH"
## run ss-perms-ubuntu-crontab ##
source "$PATH_SS_PERMS_UBUNTU_CRONTAB"
## run ss-perms-ubuntu-kernel ##
source "$PATH_SS_PERMS_UBUNTU_KERNEL"
## run ss-perms-ubuntu-ssh ##
source "$PATH_SS_PERMS_UBUNTU_SSH"
## run ss-perms-ubuntu-swapfile ##
source "$PATH_SS_PERMS_UBUNTU_SWAPFILE"
## run ss-perms-ubuntu-users ##
source "$PATH_SS_PERMS_UBUNTU_USERS"
## run ss-perms-ubuntu-utils ##
source "$PATH_SS_PERMS_UBUNTU_UTILS"
####################################################################################################
#### SS-Perms: Reset Permissions (Adminer) #########################################################
####################################################################################################
## run ss-perms-adminer ##
source "$PATH_SS_PERMS_ADMINER"
####################################################################################################
#### SS-Perms: Reset Permissions (ClamAV) ##########################################################
####################################################################################################
## run ss-perms-clamav ##
source "$PATH_SS_PERMS_CLAMAV"
####################################################################################################
#### SS-Perms: Reset Permissions (MySQL) ###########################################################
####################################################################################################
## run ss-perms-mysql-packages ##
source "$PATH_SS_PERMS_MYSQL_PACKAGES"
## run ss-perms-mysql-config ##
source "$PATH_SS_PERMS_MYSQL_CONFIG"
####################################################################################################
#### SS-Perms: Reset Permissions (PHP-FPM) #########################################################
####################################################################################################
## run ss-perms-php-packages ##
source "$PATH_SS_PERMS_PHP_PACKAGES"
## run ss-perms-php-config ##
source "$PATH_SS_PERMS_PHP_CONFIG"
####################################################################################################
#### SS-Perms: Reset Permissions (Nginx) ###########################################################
####################################################################################################
## run ss-perms-nginx-packages ##
source "$PATH_SS_PERMS_NGINX_PACKAGES"
## run ss-perms-nginx-config ##
source "$PATH_SS_PERMS_NGINX_CONFIG"
## run ss-perms-nginx-ssl ##
source "$PATH_SS_PERMS_NGINX_SSL"
####################################################################################################
#### SS-Perms: Reset Permissions (CMS) #############################################################
####################################################################################################
if [[ "$SS_APP" == "craft" ]]; then
## run ss-perms-craft-core ##
source "$PATH_SS_PERMS_CRAFT_CORE"
## run ss-perms-craft-config ##
source "$PATH_SS_PERMS_CRAFT_CONFIG"
fi
if [[ "$SS_APP" == "mediawiki" ]]; then
## run ss-perms-mediawiki-core ##
source "$PATH_SS_PERMS_MEDIAWIKI_CORE"
## run ss-perms-mediawiki-config ##
source "$PATH_SS_PERMS_MEDIAWIKI_CONFIG"
fi
if [[ "$SS_APP" == "moodle" ]]; then
## run ss-perms-moodle-core ##
source "$PATH_SS_PERMS_MOODLE_CORE"
## run ss-perms-moodle-config ##
source "$PATH_SS_PERMS_MOODLE_CONFIG"
fi
if [[ "$SS_APP" == "opencart" ]]; then
## run ss-perms-opencart-core ##
source "$PATH_SS_PERMS_OPENCART_CORE"
## run ss-perms-opencart-config ##
source "$PATH_SS_PERMS_OPENCART_CONFIG"
fi
if [[ "$SS_APP" == "prestashop" ]]; then
## run ss-perms-prestashop-core ##
source "$PATH_SS_PERMS_PRESTASHOP_CORE"
## run ss-perms-prestashop-config ##
source "$PATH_SS_PERMS_PRESTASHOP_CONFIG"
fi
if [[ "${SS_APP}" == "wordpress" ]] || [[ -z "${SS_APP}" ]]; then
## run ss-perms-wordpress-core ##
source "$PATH_SS_PERMS_WORDPRESS_CORE"
## run ss-perms-wordpress-config ##
source "$PATH_SS_PERMS_WORDPRESS_CONFIG"
## run ss-perms-wordpress-mu-plugins ##
source "$PATH_SS_PERMS_WORDPRESS_MU_PLUGINS"
## run ss-perms-wordpress-cli ##
source "$PATH_SS_PERMS_WORDPRESS_CLI"
fi
####################################################################################################
#### SS-Perms: Reset Permissions (Redis) ###########################################################
####################################################################################################
## run ss-perms-redis-packages ##
source "$PATH_SS_PERMS_REDIS_PACKAGES"
## run ss-perms-redis-config ##
source "$PATH_SS_PERMS_REDIS_CONFIG"
####################################################################################################
#### SS-Perms: Reset Permissions (UFW Firewall) ####################################################
####################################################################################################
## run ss-perms-ufw-packages ##
source "$PATH_SS_PERMS_UFW_PACKAGES"
## run ss-perms-ufw-config ##
source "$PATH_SS_PERMS_UFW_CONFIG"
####################################################################################################
#### PLACEHOLDER: Reset Permissions (SlickStack Scripts) ###########################################
####################################################################################################
## we include this permissions reset in all cron jobs and bash scripts for redundancy ##
## chmod 0700 means only the root/sudo users can execute any SlickStack scripts ##
## THIS SNIPPET DOES NOT RELY ON SS-CONFIG OR SS-FUNCTIONS
## SNIPPET: ss bash scripts, ss cron jobs
## UPDATED: 02JUL2022
chown root:root /var/www/ss* ## must be root:root
chown root:root /var/www/crons/*cron* ## must be root:root
chown root:root /var/www/crons/custom/*cron* ## must be root:root
chmod 0700 /var/www/ss* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/*cron* ## 0700 means only root/sudo can execute
chmod 0700 /var/www/crons/custom/*cron* ## 0700 means only root/sudo can execute
####################################################################################################
#### SlickStack: External References Used To Improve This Script (Thanks, Interwebz) ###############
####################################################################################################
## Ref: http://www.unixmantra.com/2013/04/unix-linux-file-permissions.html
## Ref: https://unix.stackexchange.com/questions/203371/run-script-sh-vs-bash-script-sh-permission-denied/203372#203372
## Ref: https://stackoverflow.com/questions/14372645/convert-dos2unix-line-endings-for-all-files-in-a-directory/19284034#19284034
## Ref: https://stackoverflow.com/questions/11929461/how-can-i-run-dos2unix-on-an-entire-directory/11929475#11929475
## Ref: https://unix.stackexchange.com/questions/310432/bash-script-to-convert-all-files-of-a-given-type-from-unix-to-dos-format/310437#310437
## Ref: https://kb.iu.edu/d/acux
## Ref: https://stackoverflow.com/questions/2613800/how-to-convert-dos-windows-newline-crlf-to-unix-newline-lf-in-a-bash-script
## Ref: https://github.com/wp-cli/wp-cli/issues/3181
## Ref: https://github.com/wp-cli/wp-cli/issues/1241
## Ref: https://www.alexgeorgiou.gr/wp-cli-www-data-user-permissions-linux/
## Ref: https://www.darklaunch.com/php-normalize-newlines-line-endings-crlf-cr-lf-unix-windows-mac
## Ref: https://serverfault.com/questions/344544/what-is-the-first-digit-for-in-4-digit-octal-unix-file-permission-notation
## Ref: https://unix.stackexchange.com/questions/79395/how-does-the-sticky-bit-work
## Ref: https://superuser.com/questions/684213/why-are-execute-permissions-along-with-write-permissions-needed-for-creating-a-f
## Ref: https://ubuntuforums.org/showthread.php?t=2383638
## Ref: https://serverfault.com/questions/584986/bad-ownership-or-modes-for-chroot-directory-component
## Ref: https://stackoverflow.com/questions/6851909/how-do-i-delete-everything-in-redis
## Ref: https://serverfault.com/questions/888653/correct-web-user-for-php-fpm-under-nginx
## Ref: https://askubuntu.com/questions/25681/can-scripts-run-even-when-they-are-not-set-as-executable
## Ref: https://serverfault.com/questions/616788/nginx-403-forbidden-on-some-files-extensions
## Ref: https://serverfault.com/questions/686357/unable-to-open-jpeg-files-with-nginx
## Ref: https://askubuntu.com/questions/831414/what-is-the-difference-between-touch-file-and-file
## Ref: https://bash.cyberciti.biz/guide/Setting_up_permissions_on_a_script
## Ref: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/raring/cron/raring/view/head:/database.c#L380
## Ref: https://askubuntu.com/questions/23009/why-crontab-scripts-are-not-working
## Ref: https://unix.stackexchange.com/questions/358112/permissions-error-with-wordpress
## Ref: https://webinoly.com/support/975/chown-problem?show=975
## Ref: https://unix.stackexchange.com/questions/118085/transform-a-directory-into-file-or-a-file-into-directory
## Ref: https://github.com/geerlingguy/ansible-role-mysql/issues/246
## Ref: https://github.com/geerlingguy/ansible-role-mysql/issues/220
## SS_EOF