This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Normal PHP scripts | |
location ~ \.php$ { | |
# Verify that the file exists, redirect to index if not | |
try_files $uri $uri/ $fastcgi_script_name /index.php$uri&$args =404; | |
#fastcgi_keep_conn on; | |
fastcgi_index index.php; | |
include fastcgi_params; | |
fastcgi_split_path_info ^(.+\.php)(/.+)$; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
groupadd -g 54321 oinstall | |
groupadd -g 54322 dba | |
groupadd -g 54323 oper | |
useradd -u 54321 -g oinstall -G dba,oper -m -s binbash oracle | |
passwd oracle |