Here is an example to create standby redo logs, they match the number and size of online redo logs:
[oracle@primary01 ~]$ sqlplus / as sysdba
SQL> ALTER DATABASE ADD STANDBY LOGFILE THREAD 1 SIZE 500M;
SQL> ALTER DATABASE ADD STANDBY LOGFILE THREAD 1 SIZE 500M;
SQL> ALTER DATABASE ADD STANDBY LOGFILE THREAD 2 SIZE 500M;
SQL> ALTER DATABASE ADD STANDBY LOGFILE THREAD 2 SIZE 500M;
The database will take them to '+diskgroup/db_unique_name/onlinelog', if they are not specified explicit locations.
Let's check the result:
SQL> select group#, thread#, bytes from v$standby_log;
GROUP# THREAD# BYTES
---------- ---------- ----------
5 1 524288000
6 1 524288000
7 2 524288000
8 2 524288000